greatveemon
@greatveemon
New Member
Joined: Feb 15, 2024
Topics: 9 / Replies: 24
Reply
RE: rollout inside function of a struct cause struct member access requires instance

there is a “this” keyword? and wow didn’t know that you can’t do a reference the rollout to an object… Thanks!

8 years ago
Forum
Reply
RE: rollout inside function of a struct cause struct member access requires instance

so there is no way other than creating an instance globally?

8 years ago
Forum
Reply
RE: invisible custom attributes and xml question

oops… forgot to use $.modifiers[1] instead of $. No wonder why I can’t see it in the modified object list. I’d already done this before I asked… Thank…

8 years ago
Forum
Topic
Forum
Replies: 2
Views: 12
Reply
RE: Get the result/value of format

never read this stringstream and the mxs documentation doesn’t connected with it… thanks…

8 years ago
Forum
Topic
Forum
Replies: 4
Views: 16
Reply
RE: Maxscript for Point Constraint and Orient Constraint?

You seems pretty just follow the example says on it. I think you should experiment with it also. This also works: s = Sphere pos:[20,20,20] b = Box …

8 years ago
Forum
Reply
RE: Convert rotation to offset

it’s a radian value for 360 anyway just paste this on the right side and connect it… theta = Z_Rotation if (mod theta 360) < 0.0 then (theta +…

8 years ago
Forum
Reply
RE: Convert rotation to offset

fn clampAngleTo360 theta = ( theta = mod theta 360 return (if theta < 0.0 then (theta + 360) else theta) ) offset = clampAngleTo360($box01.z.rota…

8 years ago
Forum
Topic
Forum
Replies: 0
Views: 13
Reply
RE: Get Transform Matrix

a = (matrix3 [1.45957,-0.41383,0.862164] [0.943314,0.881728,-1.17373] [-0.157291,1.44784,0.961228] [11.7975,-45.8531,66.706]) aInv = inverse (copy a) …

8 years ago
Forum
Reply
RE: For who wants to practice in Matrix algebra…

Oh… okay I get it now… thanks… yep… it’s working. Your code is much shorter than mine. :S.

8 years ago
Forum
Reply
RE: For who wants to practice in Matrix algebra…

where will I put the custom mirror plane on this? mirrorTm = (inverse tm) * (scalematrix localScale) * tm and what this does?

8 years ago
Forum
Page 1 / 3