Initial commit
This commit is contained in:
17
modules/morpher/partition.h
Normal file
17
modules/morpher/partition.h
Normal file
@@ -0,0 +1,17 @@
|
||||
#ifdef TRIANGLE_H
|
||||
#define TRIANGLE_H
|
||||
#endif
|
||||
class PartitionGrid : public Reference {
|
||||
GDCLASS(PartitionGrid, Reference)
|
||||
protected:
|
||||
struct triangle {
|
||||
int id;
|
||||
int points[3];
|
||||
} entry entries[5 * 5 * 5];
|
||||
|
||||
public:
|
||||
PartitionGrid() {
|
||||
}
|
||||
~PartitionGrid() {
|
||||
}
|
||||
};
|
||||
Reference in New Issue
Block a user