Klvnk
@klvnk
New Member
Joined: Feb 14, 2024
Topics: 50 / Replies: 1212
Reply
RE: The Create Panel

just ignore it’s been a long day

6 years ago
Forum
Topic
6 years ago
Forum
Replies: 4
Views: 66
Reply
RE: MaxScript Challenge, divide mesh open edge

extra brownie points for the closed edge version

6 years ago
Forum
Topic
Forum
Replies: 1
Views: 33
Reply
RE: Finding angle in one direction (above 180)

you need to test for reflex or obtuse, that is if the vector is above or below the the plane of the other vector… so you test whether the “end point” …

6 years ago
Forum
Reply
RE: Sdk attach mesh

you find them in gridobj.cpp (prim project) enum { grid_length, grid_width, grid_wsegs, grid_lsegs, grid_rsegs, …

6 years ago
Forum
Reply
RE: Sdk attach mesh

no need to create nodes, you only need recreate the transform that would be for the nodes position. And if they are all clones the just grab one versi…

6 years ago
Forum
Reply
RE: Sdk attach mesh

in simplest terms amesh = amesh + bmesh; for an example see the mesher object in the sdk or you can use the MeshDelta::AttachMesh function as used…

6 years ago
Forum
Reply
RE: How to generate mesh from vertices?

yeah these tend to be 2d solutions, random moving of points will cause other issues (what is the correct direction to get the correct result)

6 years ago
Forum
Reply
RE: How to generate mesh from vertices?

theres a few algorithm for this sort of thing Delaunay triangulation and sweepline triangulation are a couple of examples… though i don’t know if anyo…

6 years ago
Forum
Reply
RE: How to generate mesh from vertices?

I can’t open your file so I’ll have to ask questions does it have a known order for the vertices ? left to right bottom to top for example or do they …

6 years ago
Forum
Reply
RE: Finding common item from many arrays

if we’re are talking about arrays of strings possibly hash them first.

6 years ago
Forum
Reply
RE: Rotate Text Toward Camera + keep the same screen text size

there is no way to do this via viewport callback that isn’t “choppy” but here’s a possible solution for you… plugin Helper ViewportPoint name:”Viewp…

6 years ago
Forum
Reply
RE: [SDK] addSubRollout and removeSubRollout MaxScript methods

spring controller has a modeless dialog box that uses AppendRollup

6 years ago
Forum
Reply
RE: Reset Scale of a matrix

another alternative is mat02 = mat01.rotationpart as matrix3; mat02.translation = mat01.translation;

6 years ago
Forum
Page 15 / 85