mirror of
https://github.com/FULU-Foundation/OrcaSlicer-bambulab.git
synced 2026-05-19 22:29:09 -07:00
22 lines
374 B
C++
22 lines
374 B
C++
#ifndef _myinit_h_
|
|
#define _myinit_h_
|
|
|
|
#include <vector>
|
|
|
|
typedef std::vector<unsigned int> Ztable2;
|
|
|
|
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)
|
|
{
|
|
}
|
|
|
|
#endif
|