Klunk1
@klunk1
New Member
Joined: Feb 14, 2024
Topics: 34 / Replies: 650
Reply
RE: getVert using MXS, dotnet and C#

btw, for (int i = 1; i <= vertsNum; i++) { myMesh.GetVert(i); } should be for (int i = 0; i < vertsNum; i++) { myMesh.GetVert(i); } sdk ru…

12 years ago
Forum
Reply
RE: getVert using MXS, dotnet and C#

you could also test the object type first before converting with something like, save on the call to ConvertToType and some memory overheads the c++ …

12 years ago
Forum
Reply
RE: Creating a digital clock

you can simplify things a bit using the mod function Rollout DigiClock “Digital Clock” ( local sec, min, newsec; timer theTimer “theTime” int…

12 years ago
Forum
Reply
RE: SDK alpha not working

I鈥檒l think you鈥檒l find a lot of the ui still works on reversed 1 bit alpha. It always amuses me that iparamblock2 was introduced in (going by the docs…

12 years ago
Forum
Reply
RE: SDK alpha not working

no, not at all. And it was trying to get stuff that worked in mxs rollouts to work in the same way with the sdk that threw me. Something like maxsdk…

12 years ago
Forum
Reply
RE: SDK alpha not working

and there was me thinking 1 bit graphics died a death with my se30 20 yrs ago

12 years ago
Forum
Topic
Forum
Replies: 7
Views: 41
Reply
RE: IColorSwatch Custom Control

as addendum to this I have to thank Autodesk for their woeful programming as it forced me to look at other solutions to my problem. I now have a reall…

12 years ago
Forum
Reply
RE: IColorSwatch Custom Control

found a solution that is far from Ideal, I do the clean up on opening the picker prior to any reinitialization and cleanup any residuals when the tool…

12 years ago
Forum
Topic
Forum
Replies: 2
Views: 34
Reply
RE: Issue mirror transformation

quick and dirty method tm = $.transform; tm[1] *= -1; $.transform = tm; sorry just read the final part of your post 🙂 but to actually “mi…

12 years ago
Forum
Reply
RE: BitArrays

fairly simple stuff the way max displays it makes it a touch confusing for example ( ba = #{}; — create empty bit array print ba; ba.count = 100 …

12 years ago
Forum
Reply
RE: Weld Border edges/vertices from different elements

like (polyop.getElements <poly>) or somethong like that. yeah, unfortunately “elements” unlike verts, edges and faces are not an actual base c…

12 years ago
Forum
Reply
RE: Weld Border edges/vertices from different elements

does this work for you firstnode.vertWeldThreshold = 0.00001 polyop.weldVertsByThreshold firstnode #all scrub that I don’t know what I’m talking a…

12 years ago
Forum
Reply
RE: calculate the date which was x days ago!

fn getDateANumberOfDaysAgo numDays = ( timespan = dotnetobject “System.timespan” numDays 0 0 0; today = (dotnetclass “System.DateTim…

12 years ago
Forum
Page 12 / 46