X-Git-Url: http://git.kpe.io/?p=ctsim.git;a=blobdiff_plain;f=src%2Fgraph3dview.h;h=7933f17b5853eae97a10b334092de0eceffcc012;hp=ed438154ce9c6f4f296b1cf1dd5e3118af17d1a5;hb=3ea498d51ce4597e9649cd21f155b51175ea0bea;hpb=c6f2bb52c598291d61d31a3eba54b84ebb338580 diff --git a/src/graph3dview.h b/src/graph3dview.h index ed43815..7933f17 100644 --- a/src/graph3dview.h +++ b/src/graph3dview.h @@ -9,7 +9,7 @@ ** This is part of the CTSim program ** Copyright (c) 1983-2001 Kevin Rosenberg ** -** $Id: graph3dview.h,v 1.4 2001/02/02 23:04:06 kevin Exp $ +** $Id: graph3dview.h,v 1.8 2001/03/21 21:45:31 kevin Exp $ ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License (version 2) as @@ -56,11 +56,23 @@ private: bool m_bDoubleBuffer; bool m_bSmooth; bool m_bLighting; - bool m_bSurface; + bool m_bWireframe; bool m_bColor; + enum { + DISPLAYLIST_COLOR = 1, + DISPLAYLIST_NO_COLOR = 2, + }; + + double m_dGraphMin; + double m_dGraphMax; + double m_dColorScaleMin; + double m_dColorScaleMax; + bool m_bColorScaleMinSet; + bool m_bColorScaleMaxSet; void Draw(); void DrawSurface(); + void CreateDisplayList(); void InitMaterials(); void InitGL(); @@ -82,6 +94,8 @@ private: { return m_pFrame; } #endif + void intensityToColor (double dIntensity, GLfloat* vecColor); + public: Graph3dFileView(); virtual ~Graph3dFileView(); @@ -94,10 +108,13 @@ public: bool OnClose (bool deleteWindow = true); void OnProperties (wxCommandEvent& event); void OnLighting (wxCommandEvent& event); - void OnSurface (wxCommandEvent& event); + void OnWireframe (wxCommandEvent& event); void OnColor (wxCommandEvent& event); void OnSmooth (wxCommandEvent& event); - + void OnScaleSet (wxCommandEvent& event); + void OnScaleAuto (wxCommandEvent& event); + void OnScaleFull (wxCommandEvent& event); + #if CTSIM_MDI wxDocMDIChildFrame* getFrame() { return m_pFrame; } #else @@ -119,7 +136,7 @@ private: public: Graph3dFileCanvas (Graph3dFileView* view, wxWindow *parent, const wxPoint& pos = wxDefaultPosition, - const wxSize& size = wxDefaultSize, long style = 0, int* gl_attrib = NULL); + const wxSize& size = wxDefaultSize, long style = 0); virtual ~Graph3dFileCanvas(); virtual void OnDraw(wxDC& dc);