We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4131652 commit 19a4d67Copy full SHA for 19a4d67
src/io/export_pov.cc
@@ -26,13 +26,19 @@
26
27
#include "io/export.h"
28
29
+#include <cstddef>
30
+#include <memory>
31
+#include <ostream>
32
+#include <vector>
33
+
34
+#include "geometry/Geometry.h"
35
#include "geometry/PolySet.h"
36
#include "geometry/PolySetUtils.h"
-
37
+#include "geometry/linalg.h"
38
39
void export_pov(const std::shared_ptr<const Geometry>& geom, std::ostream& output, const ExportInfo& exportInfo)
40
{
- auto ps = PolySetUtils::getGeometryAsPolySet(geom);
41
+ std::shared_ptr<const PolySet> ps = PolySetUtils::getGeometryAsPolySet(geom);
42
if (Feature::ExperimentalPredictibleOutput.is_enabled()) {
43
ps = createSortedPolySet(*ps);
44
}
0 commit comments