MatOCAD Logo

Main Page | Class Hierarchy | Class List | Directories | File List | Class Members | File Members | Related Pages

OpzGrafico.cpp

Go to the documentation of this file.
00001 #include <wx/colour.h>
00002 #include <wx/wxprec.h>
00003 #include "../../include/StrutturaGrafici/OpzGrafico.h"
00004 #include <string.h>
00005 
00006 
00007 OpzGrafico::OpzGrafico()
00008         {
00009             xmax = 20;
00010             xmin = -20;
00011             ymax = 20;
00012             ymin = -20;
00013 
00014             xaxis=1;
00015             yaxis=1;
00016             showstepsx=1;
00017             showstepsy=1;
00018             nstepsx=10;
00019             nstepsy=10;
00020             width=300;
00021             height=300;
00022 
00023 
00024 
00025 
00026 
00027             //inizializzo lo sfondo bianco
00028             bgcolor.Set(0xFF, 0xFF, 0xFF);
00029 
00030             //inizializzo le griglie disabilitate
00031 
00032             xgrid = ygrid = false;
00033 
00034 
00035         }

 

SourceForge Logo