stigatle
@stigatle
New Member
Joined: Feb 14, 2024
Topics: 49 / Replies: 301
Reply
RE: how to make backup copy of "selection" array?

[edit] , my answer was irrelevant.

13 years ago
Forum
Reply
13 years ago
Forum
Reply
RE: soft object selection

yes it’s possible. you can use the distance function, select objects within the distance X, then apply some falloff to the selection value. Distance …

13 years ago
Forum
Reply
RE: SDK – get rotation and scale of object as x y z

thank you! It works perfectly now! I implemented it like you said. example: Point3 ang; QuatToEuler(objTM,ang,0,false); mprintf(“RadToDeg: %f %f %f…

13 years ago
Forum
Reply
RE: SDK – get rotation and scale of object as x y z

Hi again, I’m still out of luck. I implemented the code like this: AffineParts parts; decomp_affine(nodeTM,&parts); mprintf(“AffineParts q: …

13 years ago
Forum
Reply
RE: SDK – get rotation and scale of object as x y z

hi again, thanks for the additional code! I modified it to include rotation. But something strange is going on, what I’m trying to do is to export a…

13 years ago
Forum
Reply
RE: SDK – get rotation and scale of object as x y z

Hi, thanks for your reply, I was unable to make that work, is there a chance you could elaborate on how it’s properly used? thanks again.

13 years ago
Forum
Topic
Forum
Replies: 9
Views: 49
Reply
RE: 3ds max sdk export MNMesh's normals

Hope this helps you on your way… for(int f = 0; f < mesh->numFaces; ++f) { Point3 normal; Face* face = &mesh->faces[f]; for(in…

13 years ago
Forum
Reply
RE: How get texture uv's

here’s some code from a plugin I’m developing. for (int f = 0; f < mesh->numFaces; f++) { pTVFace = mesh->tvFace[f]; Face face = mesh->…

13 years ago
Forum
Reply
RE: Console logging for a max plugin

try to include: #include <stdio.h>

13 years ago
Forum
Reply
RE: Console logging for a max plugin

Thanks for this tip, I honestly did not know that, this is very useful!

13 years ago
Forum
Reply
RE: Console logging for a max plugin

You can print to the output window in visualstudio. see here:

13 years ago
Forum
Reply
RE: SDK: Update/Redraw mesh after changing smoothing groups

check the “mesh->invalidate…” functions. they rebuild the mesh after you’ve changed the things you need. EDIT: I saw now that you said you already…

13 years ago
Forum
Topic
Forum
Replies: 2
Views: 25
Page 13 / 24