circle function?
circle function?
(OP)
Hi all,
I was just wondering how can i define circle in mathcad.
mean a funcion that will draw circle in 2D plot.
ZMEI
I was just wondering how can i define circle in mathcad.
mean a funcion that will draw circle in 2D plot.
ZMEI





RE: circle function?
centrex:3
centrey:4
radius:2
pi:3.14159265
i:0;360
x[i:centrex+radius*(cos(i/180*pi))
y[i:centrey+radius*(sin(i/180*pi))
y[i@x[i
will do it.
Cheers
Greg Locock