mirror of
https://git.mirrors.martin98.com/https://github.com/prusa3d/PrusaSlicer.git
synced 2025-07-30 07:41:58 +08:00
32 lines
1.1 KiB
C++
32 lines
1.1 KiB
C++
///|/ Copyright (c) Prusa Research 2023 Enrico Turri @enricoturri1966
|
|
///|/
|
|
///|/ libvgcode is released under the terms of the AGPLv3 or higher
|
|
///|/
|
|
#ifndef VGCODE_GCODEINPUTDATA_HPP
|
|
#define VGCODE_GCODEINPUTDATA_HPP
|
|
|
|
//################################################################################################################################
|
|
// PrusaSlicer development only -> !!!TO BE REMOVED!!!
|
|
#if ENABLE_NEW_GCODE_VIEWER
|
|
//################################################################################################################################
|
|
|
|
#include "PathVertex.hpp"
|
|
|
|
#include <vector>
|
|
|
|
namespace libvgcode {
|
|
|
|
struct GCodeInputData
|
|
{
|
|
std::vector<PathVertex> vertices;
|
|
};
|
|
|
|
} // namespace libvgcode
|
|
|
|
//################################################################################################################################
|
|
// PrusaSlicer development only -> !!!TO BE REMOVED!!!
|
|
#endif // ENABLE_NEW_GCODE_VIEWER
|
|
//################################################################################################################################
|
|
|
|
#endif // VGCODE_BITSET_HPP
|