Hi, it's possible to create a handle in such a way that moving it to the right increases the number of steps with the same tread pitch?
Das Wissen aller Anwender nutzen
Im Allplan Connect Forum tauschen sich Anwender aus, geben wertvolle Tipps oder beraten sich bei ganz konkreten Aufgabenstellungen − auch international.
Und damit wirklich keine Frage unbeantwortet bleibt, unterstützen die Mitarbeiter des Technischen Supports ebenfalls aktiv das Forum.
Es erwarten Sie:
- Foren-Vielfalt aus CAD Architektur, CAD Ingenieurbau uvm.
- Tipps von User für User
- international: Deutsch, Englisch, Italienisch, Französisch und Tschechisch
Melden Sie sich jetzt an und diskutieren Sie mit!
- Forum
- CAD Parametrische Modellierung
- CAD SmartParts
[Frage] Stair and special handle
It's not a sepcial handle necessary!
Just a restriction for the associated Parameter Length ("len") in Parameter script with VALUES ...STEP:
VALUES "len" RANGE [trd,) STEP 0,trd
RANGE [trd,) .... parameter "len" can have Values from (including) "trd" to infinity(theoretically)
STEP 0,trd .... only values starting from 0 in steps of "trd" are allowed
Then use the parameter "len" in the 2D- or 3D-Script in this way:
id=0 HANDLE2 0,0,id,"len",1 HANDLE2 len,0,id,"len",2 HANDLE2 -1,0,id,"len",3 id=id+1 cnt=int(len/trd) FOR i=1 TO cnt RECT2 0,0,trd,-wdt TRANS2 trd,0 NEXT i
Anhänge (1)
Just a restriction for the associated Parameter Length ("len") in Parameter script with VALUES ...STEP:
VALUES "len" RANGE [trd,) STEP 0,trdRANGE [trd,) .... parameter "len" can have Values from (including) "trd" to infinity(theoretically)
STEP 0,trd .... only values starting from 0 in steps of "trd" are allowed
Then use the parameter "len" in the 2D- or 3D-Script in this way:
id=0
HANDLE2 0,0,id,"len",1
HANDLE2 len,0,id,"len",2
HANDLE2 -1,0,id,"len",3
id=id+1 cnt=int(len/trd) FOR i=1 TO cnt
RECT2 0,0,trd,-wdt
TRANS2 trd,0
NEXT i
Thank you Nemo for your clarification! Very very well!