aaandres
@aaandres
New Member
Joined: Feb 14, 2024
Topics: 52 / Replies: 726
Reply
RE: UNDO without REDO

I suppose you’ve already thought about it but, just in case… ( select objects[1] clearSelection() –clearNodeSelection redraw:false max undo ) Wit…

8 years ago
Forum
Topic
Forum
Replies: 0
Views: 43
Reply
RE: It has been happened!!! This is my post #10000

Congratulations DenisT and thanks a lot for your posts and answers. 10.000 posts are in fact hours and hours of dedication to this forum. And for free…

8 years ago
Forum
Reply
RE: Trying to create my first "hello world" plugin. Got stuck.

Hi Sergey! You are promoting to the Champions League! 😮 Perhaps this thread can help you. Don’t know. Good chance with it!

8 years ago
Forum
Reply
RE: C#: compiled classes disappearing?

Of course with the first method shown in post #4 you can create dotnet objects through: Class1Object = dotnetObject classStr1_Compiled Class2Object = …

8 years ago
Forum
Reply
RE: C#: compiled classes disappearing?

And as @lo has said, you can save each compiled assembly to a variable and use assembly.createInstance to create dotnet objects: ( fn compileCSha…

8 years ago
Forum
Reply
RE: C#: compiled classes disappearing?

Can it be useful to save the dotnet classes to global variables and then use them directly? ( classStr1 = “class class1{}” classStr2 = “class class2…

8 years ago
Forum
Reply
RE: Sorting array on multiple value possible ? Can't find a way…

If you want something general, with the same recursive behavior shown by DenisT: fn multi_comparer x y column_order:#(1) column_dir: loop:0 result:0…

8 years ago
Forum
Reply
RE: Last bit?

Just for fun, to practice Python, I’ve written one of these functions. It works, but… How do I get the result from Python (I mean, the ‘i’ python vari…

9 years ago
Forum
Reply
RE: Last bit?

Second try: ( fn findIndexOfBit bitValue bits = ( if not bits[bitValue] do return undefined index = (bits – #{(bitValue + 1)..bits.count}).numb…

9 years ago
Forum
Reply
RE: Last bit?

Yes. For aaa= #{1…1000000, 1000002} and bitValue = 1000002, time and memory are: Time: 0.349sec. Mem: 111.946.296L It’s fast, but memory consuming.

9 years ago
Forum
Reply
RE: Last bit?

right above

9 years ago
Forum
Reply
RE: Last bit?

First try: ( fn findIndexOfBit bitValue bits = ( fn compareFn val index valArray: = ( arrayVal = valArray[index] case of ( (val < …

9 years ago
Forum
Reply
RE: Last bit?

Second try: ( fn firstAvailableBit bits = ( fn firstBit arr = ( local b for n in arr while (b = n; off) do () b ) firstBit = firs…

9 years ago
Forum
Reply
RE: Last bit?

First try: ( fn firstAvailableBit bits = ( count = 1 for i in bits while i == count do count += 1 count ) aaa= #{1..5, 21, 23, 25, 27,…

9 years ago
Forum
Page 19 / 52