mirror of
https://github.com/SoftFever/OrcaSlicer.git
synced 2025-07-25 07:34:03 -06:00
Define a surface type count constant to be able to address a vector
with a surface type.
This commit is contained in:
parent
83a80a9b7d
commit
d430767fa7
1 changed files with 4 additions and 1 deletions
|
@ -23,7 +23,10 @@ enum SurfaceType {
|
|||
// or if sparse infill layers get combined into a single layer.
|
||||
stInternalVoid,
|
||||
// Inner/outer perimeters.
|
||||
stPerimeter
|
||||
stPerimeter,
|
||||
// Last surface type, if the SurfaceType is used as an index into a vector.
|
||||
stLast,
|
||||
stCount = stLast + 1
|
||||
};
|
||||
|
||||
class Surface
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue