![]() |
Public API Reference |
#include <haze.h>
Inheritance diagram for iHazeHull:
Public Methods | |
virtual int | GetPolygonCount () const=0 |
get the number of polygons. More... | |
virtual int | GetVerticeCount () const=0 |
get the total number of vertices. More... | |
virtual int | GetEdgeCount () const=0 |
get the total number of edges. More... | |
virtual void | GetVertex (csVector3 &res, int vertex_idx) const=0 |
get a vertex by index. More... | |
virtual void | GetEdge (int edge_num, int &vertex_idx_1, int &vertex_idx_2) const=0 |
get the two (unordered) points of an edge (by index). More... | |
virtual int | GetPolVerticeCount (int polygon_num) const=0 |
get the number of vertices in a polygon. More... | |
virtual int | GetPolVertex (int polygon_num, int vertex_num) const=0 |
get vertexindex in a polygon (given vertex number in polygon). More... | |
virtual int | GetPolEdge (int polygon_num, int vertex_num, int &start_idx, int &end_idx) const=0 |
Get the edge index that starts at given vertex number in polygon Also returns the start and end vertex-idx of the edge (in clockwise order). More... |
This mesh must be a convex hull. for example: cubes, boxes, spheres, cones, cylinders, pyramids. A convex hull object can be defined as follows: from any point inside the object, all of the polygons are completely visible (none are obscured by other polygons from the convex hull). The ordering of the vertices (vertice numbering) is important when multiple hulls are used. Also edges must be numbered, with a number for each undirected edge. (i.e. a->b and b->a have the same edge number). Polygons thus have N vertices and N edges. For a particular polygon, the edges return their points in clockwise ordering.
Definition at line 46 of file haze.h.
|
get the two (unordered) points of an edge (by index).
|
|
get the total number of edges.
|
|
Get the edge index that starts at given vertex number in polygon Also returns the start and end vertex-idx of the edge (in clockwise order).
|
|
get vertexindex in a polygon (given vertex number in polygon).
|
|
get the number of vertices in a polygon.
|
|
get the number of polygons.
|
|
get a vertex by index.
|
|
get the total number of vertices.
|