eric720
@eric720
New Member
Joined: Feb 14, 2024
Topics: 3 / Replies: 9
Reply
RE: rebuild mesh low poly

Try a plugin named Polygon Cruncher. I guess it can do pretty much what u want. Eric

18 years ago
Forum
Reply
RE: Generate Triangle strips

Thanks, checking it…

18 years ago
Forum
Topic
Forum
Replies: 2
Views: 20
Topic
Forum
Replies: 0
Views: 15
Reply
RE: Write/Read binary file in 3Ds Max 7

Oops, I made a mistake. Thanks

18 years ago
Forum
Reply
RE: Write/Read binary file in 3Ds Max 7

fopen is the function inside Binstream but only available in 3ds Max 8 and higher.

18 years ago
Forum
Topic
Forum
Replies: 4
Views: 25
Reply
RE: Vertex normal – not face Normal

Well, have you ever tried the script in Max? coz the code will get you every vertex normal for each face even the normal on hard edge. So just draw a …

18 years ago
Forum
Reply
RE: Vertex normal – not face Normal

I quotedthe description of maxscript reference: getNormal <mesh> <vert_index_integer> [left][left]Returns the normal at the indexed verte…

18 years ago
Forum
Reply
RE: Vertex normal – not face Normal

mesh = $box01.mesh numFaces = mesh.numFaces for fi =1 to numFaces do ( face = getFace mesh fi for i=1 to 3 do ( vi = (int face[i]) cur…

18 years ago
Forum
Reply
RE: Vertex normal – not face Normal

mesh = $box01.mesh num_faces = mesh.numface for fi =1 to numFaces do ( face = getFace mesh fi for i=1 to 3 do ( vi = (int face[i]) current_vertex_nor…

18 years ago
Forum
Reply
RE: Vertex normal – not face Normal

mesh = $box01.mesh num_faces = mesh.numface for fi =1 to numFaces do ( face = getFace mesh fi for i=1 to 3 do ( vi = (int face[i]) current_vertex_no…

18 years ago
Forum