cancel
Showing results for 
Search instead for 
Did you mean: 
EN
cancel
Showing results for 
Search instead for 
Did you mean: 
ReignBough
Enthusiast

TRANMAT Rotation Z

I used the transformation matrix function on AC22:
TRANMAT* tm;
Geometry::TMRotation_Z(tm, radAngle);

This is not existing in AC23 and it seems that the new function is:
TRANMAT* tm;
tm->CreateRotationZ(radAngle);

But this function returns 0 values on tmx.

Is this a bug? Or, am I using this function wrong? Or, am I using the wrong function?

Also, is there a documentation on what are the new TRANMAT functions?
~ReignBough~
ARCHICAD 27 INT (since AC18)
Windows 11 Pro, AMD Ryzen 7, 3.20GHz, 32.0GB RAM, 64-bit OS
1 Solution

Accepted Solutions
Akos Somorjai
Graphisoft
Graphisoft
The correct code would be:
TRANMAT tran = TRANMAT::CreateRotationZ (radAngle);
tran.FillStatus2D ();
Best, Akos

Go to post

1 Reply 1
Akos Somorjai
Graphisoft
Graphisoft
The correct code would be:
TRANMAT tran = TRANMAT::CreateRotationZ (radAngle);
tran.FillStatus2D ();
Best, Akos

Didn't find the answer?

Check other topics in this Forum

Back to Forum

Read the latest accepted solutions!

Accepted Solutions

Start a new conversation!