Subversion Repositories gelsvn

Rev

Rev 638 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 638 Rev 643
Line 67... Line 67...
67
		void post_create_display_list()
67
		void post_create_display_list()
68
		{
68
		{
69
			create_display_list = true;
69
			create_display_list = true;
70
		}
70
		}
71
		
71
		
72
		void harmonics_analyze_mesh(GLGraphics::Console& cs)
72
		void harmonics_analyze_mesh()
73
		{
73
		{
74
			delete harmonics;
74
			delete harmonics;
75
			harmonics = new Harmonics(mani, cs);
75
			harmonics = new Harmonics(mani);
76
		}
76
		}
77
		
77
		
78
		void harmonics_reset_shape()
78
		void harmonics_reset_shape()
79
		{
79
		{
80
			if(harmonics)
80
			if(harmonics)
81
				harmonics->reset_shape();
81
				harmonics->reset_shape();
82
		}
82
		}
83
		
83
		
84
		void harmonics_parse_key(unsigned char key)
-
 
85
		{
-
 
86
			harmonics->parse_key(key);
-
 
87
		}
-
 
88
		
-
 
89
		void harmonics_partial_reconstruct(int eig0, int eig1, float scale)
84
		void harmonics_partial_reconstruct(int eig0, int eig1, float scale)
90
		{
85
		{
91
			if(harmonics)
86
			if(harmonics)
92
				harmonics->partial_reconstruct(eig0, eig1, scale);
87
				harmonics->partial_reconstruct(eig0, eig1, scale);
93
		}
88
		}