[ < ] | [ > ] | [ << ] | [ Up ] | [ >> ] | [Top] | [Contents] | [Index] | [ ? ] |
3.14.5 Crust
- Method on
mglGraph
(C++, Python):void
Crust (const mglData &
x,const mglData &
y,const mglData &
z,const char *
sch=""
,float
er=0
) - C function:
void
mgl_crust (HMGL
gr,const HMDT
x,const HMDT
y,const HMDT
z,const char *
sch,float
er) The function reconstruct and draws the surface for arbitrary placed points {x[i], y[i], z[i]}. Parameter er set relative radius for (increase it for removing holes). String sch sets the color scheme. Previous color scheme is used by default. If string contain ‘#’ then wire plot is produced. Arrays x, y, z must have equal sizes. See also Dots, TriPlot. See section Crust sample, for sample code and picture.
- Method on
mglGraph
(C++):void
Crust (const mglData &
tr,const char *
sch=""
,float
er=0
) - C function:
void
mgl_crust_tr (HMGL
gr,const HMDT
tr,const char *
sch,float
er) The same as previous with x=tr(0,:), y=tr(1,:), z=tr(2,:).