Serejah
@serejah
New Member
Joined: Feb 14, 2024
Topics: 34 / Replies: 1221
Reply
RE: Setting Curve Control tangents?

Not sure if it’s correct. It fails only at first inTangent and last outTangent. max 2014 fn createCurve = ( local numPts = 5 crv….

7 years ago
Forum
Reply
RE: Setting Curve Control tangents?

what if you set points in reverse order like so for i = numPts to 1 by -1 do (

7 years ago
Forum
Reply
RE: Find intersection point between a vector (2 points) and closed spline

How are you suppose to have a valid intersection point using lineLine Intersection? lineLine Intersection will return the intersection point that is o…

7 years ago
Forum
Reply
RE: Find intersection point between a vector (2 points) and closed spline

something like this delete objects Thetex = text text:”D” size:115 centerpivot thetex thetex.pos = [0,0,0] pt1 = point size:.5 cross:on box:off axi…

7 years ago
Forum
Reply
RE: Find intersection point between a vector (2 points) and closed spline

2 points sounds more like segment not vector. Collect points of your spline using interpCurve3D and then check segmentSegment intersection between you…

7 years ago
Forum
Reply
RE: Easy (I think!) question: A Maxscript to load an image file on startup

Can’t imagine what can go wrong here. What does listener says for this one: [i]doesFileExist[/i] @”G:/MICK/Palette/Palette – 3d Max Wireframe color…

7 years ago
Forum
Reply
RE: Easy (I think!) question: A Maxscript to load an image file on startup

I’ve edited my previous post. Check if it works now. You are definitely having some file path issues. Maybe checking this thread would help

7 years ago
Forum
Reply
RE: Easy (I think!) question: A Maxscript to load an image file on startup

display (openBitMap @”G:/MICK/Palette/Palette – 3d Max Wireframe colors.tif”)

7 years ago
Forum
Reply
RE: Convert materials in scene to VrayOverrideMtl & ignore selected objects materials?

You can either replace existing material with vrayOverrideMtl or apply new vrayOverrideMtl to the dependent nodes. — 1. blackMtl = VRayMtl diffuse:…

7 years ago
Forum
Reply
RE: Align Poly Vertexs To Curve Spline Maxscript

Have you seen this? [](javascript:void(0))

7 years ago
Forum
Reply
RE: [Maxscript] Event Callback for multiple nodes added/deleted

You can use NodeEventCallback for that fn handleAddDelete ev nodes = ( format “% ” ev for n in nodes do format “% ” (getAnimByHandl…

7 years ago
Forum
Reply
RE: How to get position from spline vertex by maxscript

( delete objects shp = SplineShape() — Create splineshape for i=1 to 5 do ( addNewSpline shp for j=1 to 5 do addKnot shp i #corner …

7 years ago
Forum
Reply
RE: How to get position from spline vertex by maxscript

shp = — your spline shape selectedKnots = #() for i=1 to numsplines shp do ( for j in getKnotSelection shp i do append selectedKnots #( i, j, get…

7 years ago
Forum
Reply
RE: Set MAXScript Listener window position

getWindowRectand setWindowPos

7 years ago
Forum
Page 64 / 84