Piflik
@piflik
New Member
Joined: Feb 15, 2024
Topics: 2 / Replies: 79
Reply
RE: skipping loop iterations

The Least significant bit (LSB) is the last number in an binary digit. 1001011010100 has LSB 0 1001011010101 has LSB 1 Every binary with LSB 1 is od…

16 years ago
Forum
Reply
RE: how to prevent Modifier added twice

Yeah, sorry. I have been a bit to hasty…should have been ‘==’ instead of ‘>’ But since it doesn’t work anyway…I just thaught that you could write …

16 years ago
Forum
Reply
RE: how to prevent Modifier added twice

Couldn’t you incorporate such a script in a way, that it is called whenever the user tries to add the modifier? for o in selection do (if (for m in o…

16 years ago
Forum
Reply
RE: how to prevent Modifier added twice

You can loop through the modifier stack of the object and test each one if it is the one your trying to add.

16 years ago
Forum
Reply
RE: Loop through files in folder, add xrefs

Using ‘/’ instead of ‘’ should also work.

16 years ago
Forum
Reply
RE: max 2009 new Node Event System

Ah…now I get it. The NodeEventCallback automatically gives these two parameters (Event and Node) to any function it calls. Therefore, the called funct…

16 years ago
Forum
Reply
RE: max 2009 new Node Event System

The error you get says, that the ObjFn funktion gets two variables while it expects none. But in the code you provided, it seems that you’re calling t…

16 years ago
Forum
Reply
RE: Extract number from object name?

You can collect the objects into an array and use the index as multiplier (methinks) theObjects = $object* as array sort theObjects –if you didn’t …

16 years ago
Forum
Reply
RE: Thread Synchronisation

So you need these values in Real-Time while the script is running? What are these values? Can you maybe leave out the external app and create the valu…

16 years ago
Forum
Reply
RE: Thread Synchronisation

Are you sure you have to do it that way? I would assume that this is highly unstable, even if you get it to work correctly, and as far as I know there…

16 years ago
Forum
Reply
RE: renaming autocad layers

Wouldn’t a case expression be a tad cleaner instead of that many if expressions?

16 years ago
Forum
Reply
RE: fibonacci / golden ratio

I wrote a script about the rectangles of a Fibonacci Spiral (not golden ration though…) on |[Pixelplausch.de]| . Maybe it helps you…

16 years ago
Forum
Reply
RE: script called at the same time than a max feature

I don’t know if there’s a command to turn off all textures at once, but you can use “showTextureMap = false” in a loop where you cycle through all you…

16 years ago
Forum
Reply
RE: Appending to an Array?

I think, this appends only the variable shapeAll into the array, not each Shape-object. I would try this: shps=#() append shps #($Shape_*) Edit: Upd…

16 years ago
Forum
Reply
RE: Spin by Age script operator for pflow?

I wouldn’t consider myself “Master” im just a humble Disciple. Bobo is the Master. :bowdown: :bowdown: :bowdown:

16 years ago
Forum
Page 5 / 6