home *** CD-ROM | disk | FTP | other *** search
/ Micromanía 90 / CDMM_90_1.ISO / Cycling Manager 2 / CyclingManager2Demo.exe / Disk1 / data1.cab / Game / DataCommon / ScriptsLibrary / MshGraphLibrary.cnh < prev    next >
Encoding:
Text File  |  2002-05-10  |  873 b   |  20 lines

  1. class msh_graph;
  2.  
  3. // Constructor/Destructor
  4. func msh_graph CreateGraph();
  5. func i32x DeleteGraph(msh_graph _pGraph);
  6.  
  7. // Graph Mutator
  8. func i32x SetGraphTexture(msh_graph _pGraph, szx _szTexture);
  9. func i32x SetGraphLineWidth(msh_graph _pGraph, f32x _fWidth);
  10. func i32x SetGraphRange(msh_graph _pGraph, f32x xmin, f32x ymin, f32x xmax, f32x ymax);
  11. func i32x SetGraphType(msh_graph _pGraph, i32x _iType);
  12. func i32x SetGraphNumValues(msh_graph _pGraph, i32x _iNumValues);
  13.  
  14. func i32x SetGraphXYValue(msh_graph _pGraph, i32x _iIndex, f32x _fX, f32x _fY);
  15. func i32x SetGraphXYCValue(msh_graph _pGraph, i32x _iIndex, f32x _fX, f32x _fY, i32x _c);
  16. func i32x SetGraphXYZValue(msh_graph _pGraph, f32x _fX, f32x _fY, f32x _fZ);
  17. func i32x SetGraphXYZCValue(msh_graph _pGraph, f32x _fX, f32x _fY, i32x _iC);
  18.  
  19. func i32x ExportGraph(msh_graph _pGraph, szx _szFilename);
  20.