Function:ns2erc
From S2PLOT
(Difference between revisions)
Revision as of 22:50, 7 January 2009 S2plot admin (Talk | contribs) ← Previous diff |
Revision as of 03:09, 27 January 2009 S2plot admin (Talk | contribs) Next diff → |
||
Line 17: | Line 17: | ||
<table> | <table> | ||
<tr><td> [[Function:ns2verc |ns2verc]]</td><td>Draw an arc - vector input.</td></tr> | <tr><td> [[Function:ns2verc |ns2verc]]</td><td>Draw an arc - vector input.</td></tr> | ||
- | <tr><td> [[Function:ns2arc |ns2arc]]</td><td>Draw an arc at (px,py,pz) with normal (nx,ny,nz) in current pen (thickness,colour)..</td></tr> | + | <tr><td> [[Function:ns2arc |ns2arc]]</td><td>Draw an arc at (px,py,pz) with normal (nx,ny,nz) in current pen (thickness,colour).</td></tr> |
<tr><td>[[Function:ns2varc | ns2varc ]]</td><td>Draw an arc at (px,py,pz) with normal (nx,ny,nz) in current pen (thickness,colour) - vector input. </td></tr> | <tr><td>[[Function:ns2varc | ns2varc ]]</td><td>Draw an arc at (px,py,pz) with normal (nx,ny,nz) in current pen (thickness,colour) - vector input. </td></tr> | ||
<tr><td>[[Function:s2line |s2line]]</td><td>Draw a poly line, n vertices at (xpts, ypts, zpts).</td></tr> | <tr><td>[[Function:s2line |s2line]]</td><td>Draw a poly line, n vertices at (xpts, ypts, zpts).</td></tr> |
Revision as of 03:09, 27 January 2009
ns2erc
Draw an arc.
Prototype
void ns2erc(float px, float py, float pz,
float nx, float ny, float nz,
float sx, float sy, float sz,
float deg, int nseg, float axratio);
Description
Draw an arc as above, but with specified major/minor axis ratio. The major axis is given by the starting vector.
See Also
ns2verc | Draw an arc - vector input. |
ns2arc | Draw an arc at (px,py,pz) with normal (nx,ny,nz) in current pen (thickness,colour). |
ns2varc | Draw an arc at (px,py,pz) with normal (nx,ny,nz) in current pen (thickness,colour) - vector input. |
s2line | Draw a poly line, n vertices at (xpts, ypts, zpts). |
Code Example
Back to S2PLOT function list.