|
@@ -3,21 +3,8 @@
|
|
|
|
|
|
#include <vector>
|
|
|
|
|
|
-////////////////
|
|
|
-class ZTable
|
|
|
-{
|
|
|
- public:
|
|
|
- ZTable(std::vector<unsigned int>* z_array);
|
|
|
- std::vector<unsigned int> get_range(unsigned int min_z, unsigned int max_z);
|
|
|
- std::vector<unsigned int> z;
|
|
|
-};
|
|
|
-
|
|
|
-ZTable::ZTable(std::vector<unsigned int>* ztable) :
|
|
|
- z(*ztable)
|
|
|
-{
|
|
|
-}
|
|
|
-////////////////
|
|
|
-
|
|
|
-#include "TriangleMesh.hpp"
|
|
|
+#define av_store_point_xy(AV, X, Y) \
|
|
|
+ av_store(AV, 0, newSViv(X)); \
|
|
|
+ av_store(AV, 1, newSViv(Y))
|
|
|
|
|
|
#endif
|