mirror of
https://github.com/TheOnlyZac/sly1.git
synced 2024-11-23 05:39:54 +00:00
36 lines
374 B
C
36 lines
374 B
C
/**
|
|
* @file geom.h
|
|
*
|
|
* @brief Geometry.
|
|
*/
|
|
#ifndef GEOM_H
|
|
#define GEOM_H
|
|
|
|
#include "common.h"
|
|
|
|
/**
|
|
* @brief Edge
|
|
*
|
|
* Represents an edge in a geometry.
|
|
*/
|
|
struct EDGE
|
|
{
|
|
ushort aipos[2];
|
|
ushort aisurf[2];
|
|
EDGE *pedgeNext;
|
|
EDGE *pedgeOtherNext;
|
|
};
|
|
|
|
/**
|
|
* @brief Geometry
|
|
|
|
*
|
|
* @todo Implement struct.
|
|
*/
|
|
struct GEOM
|
|
{
|
|
// ...
|
|
};
|
|
|
|
#endif // GEOM_H
|