mirror of
https://git.mirrors.martin98.com/https://github.com/slic3r/Slic3r.git
synced 2025-08-01 10:02:00 +08:00
Give alias for vector of Point3.
This commit is contained in:
parent
c6966c077e
commit
83af35b7c4
@ -13,17 +13,21 @@ class Line;
|
||||
class Linef;
|
||||
class MultiPoint;
|
||||
class Point;
|
||||
class Point3;
|
||||
class Pointf;
|
||||
class Pointf3;
|
||||
typedef Point Vector;
|
||||
typedef Pointf Vectorf;
|
||||
typedef Pointf3 Vectorf3;
|
||||
using Vector3 = Point3;
|
||||
typedef std::vector<Point> Points;
|
||||
typedef std::vector<Point*> PointPtrs;
|
||||
typedef std::vector<const Point*> PointConstPtrs;
|
||||
typedef std::vector<Pointf> Pointfs;
|
||||
typedef std::vector<Pointf3> Pointf3s;
|
||||
|
||||
using Point3s = std::vector<Point3>;
|
||||
|
||||
class Point
|
||||
{
|
||||
public:
|
||||
|
Loading…
x
Reference in New Issue
Block a user