home *** CD-ROM | disk | FTP | other *** search
- class msh_graph;
-
- // Constructor/Destructor
- func msh_graph CreateGraph();
- func i32x DeleteGraph(msh_graph _pGraph);
-
- // Graph Mutator
- func i32x SetGraphTexture(msh_graph _pGraph, szx _szTexture);
- func i32x SetGraphLineWidth(msh_graph _pGraph, f32x _fWidth);
- func i32x SetGraphRange(msh_graph _pGraph, f32x xmin, f32x ymin, f32x xmax, f32x ymax);
- func i32x SetGraphType(msh_graph _pGraph, i32x _iType);
- func i32x SetGraphNumValues(msh_graph _pGraph, i32x _iNumValues);
-
- func i32x SetGraphXYValue(msh_graph _pGraph, i32x _iIndex, f32x _fX, f32x _fY);
- func i32x SetGraphXYCValue(msh_graph _pGraph, i32x _iIndex, f32x _fX, f32x _fY, i32x _c);
- func i32x SetGraphXYZValue(msh_graph _pGraph, f32x _fX, f32x _fY, f32x _fZ);
- func i32x SetGraphXYZCValue(msh_graph _pGraph, f32x _fX, f32x _fY, i32x _iC);
-
- func i32x ExportGraph(msh_graph _pGraph, szx _szFilename);
-