Over 1.091.000 registered users (EN+CZ).
AutoCAD tips, Inventor tips, Revit tips.
Try the new precise Engineering calculator.
New AutoCAD 2026 commands and variables.
CAD tip # 8884:
Question
A

On the homepage of 2DPlot you can find several examples of definitions of mathematical functions and specifying intervals of input values and precision of the resulting curve.
With parametrization you can use 2DPlot also for creating guilloches, strophoids, curves based on the hypotrochoide and epitrochoide functions, resp. on Farrel wheels.
General format of 2DPlot calls:
(2dplot fXY u-from u-to ustep)
Example - sinusoide (from -PI to PI, 100 steps):
(defun fSin(u)(list u (sin u))) (2DPlot fSin (- pi) pi (/ (* 2 pi) 100))
or a parabolic curve (from -2 to 2, 200 steps):
(defun fParabola(u)(list u (* u u))) (2DPlot fParabola -2.0 2.0 (/ 4.0 200))
The interactive command 2DPLOT offers several samples (sinusoid, catenary...). You can use the job #8) for interesting parametric Farrel wheel curves.
You can use 2DPlot as a replacement of the old tool FPLOT.LSP.
ACAD


28.10.2012
14691×
applies to: AutoCAD ·