-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMilkshapeModel.h
59 lines (37 loc) · 1 KB
/
MilkshapeModel.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
/*
MilkshapeModel.h
Loads and renders a Milkshape3D model.
Author: Brett Porter
Email: brettporter@yahoo.com
Website: http://www.geocities.com/brettporter/
Copyright (C)2000, Brett Porter. All Rights Reserved.
This file may be used only as long as this copyright notice remains intact.
*/
#ifndef MILKSHAPEMODEL_H
#define MILKSHAPEMODEL_H
#include "Model.h"
class MilkshapeModel : public Model
{
public:
/* Constructor. */
MilkshapeModel();
/* Destructor. */
virtual ~MilkshapeModel();
// bool loadModelDatafromammimp(const char * filename);
/*
Load the model data into the private variables.
filename Model filename
*/
virtual bool loadModelData( const char *filename );
/*
Draw the model.
*/
virtual void draw();
void Syc(float x, float y, float z);
virtual void Setup();
protected:
void PreSetup();
protected:
//unsigned int maxMeshVertexNumber;
};
#endif // ifndef MILKSHAPEMODEL_H