[phpBB Debug] PHP Warning: in file [ROOT]/phpbb/session.php on line 86: htmlspecialchars(): Charset "utf8-bin" is not supported, assuming UTF-8
[phpBB Debug] PHP Warning: in file [ROOT]/phpbb/session.php on line 151: htmlspecialchars(): Charset "utf8-bin" is not supported, assuming UTF-8
[phpBB Debug] PHP Warning: in file [ROOT]/phpbb/session.php on line 152: htmlspecialchars(): Charset "utf8-bin" is not supported, assuming UTF-8
[phpBB Debug] PHP Warning: in file [ROOT]/phpbb/user.php on line 329: htmlspecialchars(): Charset "utf8-bin" is not supported, assuming UTF-8
[phpBB Debug] PHP Warning: in file [ROOT]/includes/functions.php on line 4130: Cannot modify header information - headers already sent by (output started at [ROOT]/includes/functions.php:3009)
[phpBB Debug] PHP Warning: in file [ROOT]/includes/functions.php on line 4130: Cannot modify header information - headers already sent by (output started at [ROOT]/includes/functions.php:3009)
[phpBB Debug] PHP Warning: in file [ROOT]/includes/functions.php on line 4130: Cannot modify header information - headers already sent by (output started at [ROOT]/includes/functions.php:3009)
[phpBB Debug] PHP Warning: in file [ROOT]/includes/functions.php on line 4130: Cannot modify header information - headers already sent by (output started at [ROOT]/includes/functions.php:3009)
DesignCAD DC Toolkit FileLinker Forum • Schraubenlinie
Seite 1 von 1

Schraubenlinie

Verfasst: Montag 6. Juli 2020, 11:16
von ClaFra
Wie kann man eine schraubenförmige Linie zeichnen? Zum Verständnis:
Die Linie, die den Drahtmittelpunkte einer zylindrischen Druckfeder darstellt?
Mit einem Makro kann man ja zum Beispiel eine Druckfeder zeichnen, wenn man
den Befehl "Sweep" und den entsprechenden Parametern auf einen Kreis anwendet.
Wie geht das ohne Makro, und wie gesagt ich will nur eine Linie Zeichnen.
Besten Dank im Voraus!
3DCad Max 2018 Vers. 27

Re: Schraubenlinie

Verfasst: Mittwoch 8. Juli 2020, 17:58
von Franjo
Hallo,
versuche einmal folgendes. Zeichne eine Druckfeder wähle einen kleinen Drahtdurchmesser, über markiertes bearbeiten wähle Vektorkonvertierung klicke dann deine Feder an und ziehe die gewünschte Linie heraus.

Gruß Franjo

Re: Schraubenlinie

Verfasst: Samstag 11. Juli 2020, 12:09
von ClaFra
Danke, ich versuch es so

Re: Schraubenlinie

Verfasst: Sonntag 12. Juli 2020, 18:36
von ClaFra
Ich habe das mitgelieferte Makro "Arch_Spiral.3dm" abgewandelt:
' Helix
' Zeichnet eine Helix mit einzugebenen Parametern
' r = Radius der Helix
' a = anzahl der Windungen

Input "Radius der Helix" , r
Input "Hoehe/Laenge der Helix", h
Input "Anzahl der Windungen", a
Input " Anzahl der Segmente", s
pi = 3.1415926536
w = a * 360 'Umlaufwinkel
sw = w/s
>Curve
{
for i = 0 to w step w/s
x = r*cos(i)
y = r*sin(i)
z = h * i/w
<Pointxyz [x, y, z]
next i
}
end

Das funzt!!