File size: 12,730 Bytes
985c397 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 |
// SPDX-License-Identifier: BSD-3-Clause
// pyarea.cpp
// Copyright 2017, Lorenz Lechner
// This program is released under the BSD license. See the file COPYING for details.
#ifdef _MSC_VER
# define strdup _strdup
#endif
#include "Area.h"
#include "Point.h"
#include "AreaDxf.h"
#include "kurve/geometry.h"
#include "Adaptive.hpp"
#include <pybind11/pybind11.h>
#include <pybind11/stl.h>
#include <pybind11/functional.h>
#include <pybind11/operators.h>
#include <vector>
namespace py = pybind11;
std::list<CVertex> getVertices(const CCurve& curve)
{
return curve.m_vertices;
}
std::list<CCurve> getCurves(const CArea& area)
{
return area.m_curves;
}
py::tuple transformed_point(const geoff_geometry::Matrix& matrix, double x, double y, double z)
{
geoff_geometry::Point3d p(x, y, z);
p = p.Transform(matrix);
return py::make_tuple(p.x, p.y, p.z);
}
static void print_curve(const CCurve& c)
{
std::size_t nvertices = c.m_vertices.size();
#if defined SIZEOF_SIZE_T && SIZEOF_SIZE_T == 4
printf("number of vertices = %d\n", nvertices);
#elif defined(_WIN32)
printf("number of vertices = %zu\n", nvertices);
#else
printf("number of vertices = %lu\n", nvertices);
#endif
int i = 0;
for (std::list<CVertex>::const_iterator It = c.m_vertices.begin(); It != c.m_vertices.end();
It++, i++) {
const CVertex& vertex = *It;
printf(
"vertex %d type = %d, x = %g, y = %g",
i + 1,
vertex.m_type,
vertex.m_p.x / CArea::get_units(),
vertex.m_p.y / CArea::get_units()
);
if (vertex.m_type) {
printf(
", xc = %g, yc = %g",
vertex.m_c.x / CArea::get_units(),
vertex.m_c.y / CArea::get_units()
);
}
printf("\n");
}
}
static void print_area(const CArea& a)
{
for (std::list<CCurve>::const_iterator It = a.m_curves.begin(); It != a.m_curves.end(); It++) {
const CCurve& curve = *It;
print_curve(curve);
}
}
static unsigned int num_vertices(const CCurve& curve)
{
return static_cast<unsigned int>(curve.m_vertices.size());
}
static CVertex FirstVertex(const CCurve& curve)
{
return curve.m_vertices.front();
}
static CVertex LastVertex(const CCurve& curve)
{
return curve.m_vertices.back();
}
static void set_units(double units)
{
CArea::set_units(units);
}
static double get_units()
{
return CArea::get_units();
}
static bool holes_linked()
{
return CArea::HolesLinked();
}
static CArea AreaFromDxf(const char* filepath)
{
CArea area;
AreaDxfRead dxf(&area, filepath);
dxf.DoRead();
return area;
}
static void append_point(CCurve& c, const Point& p)
{
c.m_vertices.push_back(CVertex(p));
}
static py::tuple nearest_point_to_curve(CCurve& c1, const CCurve& c2)
{
double dist;
Point p = c1.NearestPoint(c2, &dist);
return py::make_tuple(p, dist);
}
std::list<CCurve> MakePocketToolpath(
const CArea& a,
double tool_radius,
double extra_offset,
double stepover,
bool from_center,
bool use_zig_zag,
double zig_angle
)
{
std::list<CCurve> toolpath;
CAreaPocketParams params(
tool_radius,
extra_offset,
stepover,
from_center,
use_zig_zag ? ZigZagPocketMode : SpiralPocketMode,
zig_angle
);
a.SplitAndMakePocketToolpath(toolpath, params);
return toolpath;
}
std::list<CArea> SplitArea(const CArea& a)
{
std::list<CArea> areas;
a.Split(areas);
return areas;
}
void dxfArea(CArea& area, const char* /*str*/)
{
area = CArea();
}
py::list getCurveSpans(const CCurve& c)
{
py::list span_list;
const Point* prev_p = NULL;
for (std::list<CVertex>::const_iterator VIt = c.m_vertices.begin(); VIt != c.m_vertices.end();
VIt++) {
const CVertex& vertex = *VIt;
if (prev_p) {
span_list.append(Span(*prev_p, vertex));
}
prev_p = &(vertex.m_p);
}
return span_list;
}
Span getFirstCurveSpan(const CCurve& c)
{
if (c.m_vertices.size() < 2) {
return Span();
}
std::list<CVertex>::const_iterator VIt = c.m_vertices.begin();
const Point& p = (*VIt).m_p;
VIt++;
return Span(p, *VIt, true);
}
Span getLastCurveSpan(const CCurve& c)
{
if (c.m_vertices.size() < 2) {
return Span();
}
std::list<CVertex>::const_reverse_iterator VIt = c.m_vertices.rbegin();
const CVertex& v = (*VIt);
VIt++;
return Span((*VIt).m_p, v, c.m_vertices.size() == 2);
}
py::tuple TangentialArc(const Point& p0, const Point& p1, const Point& v0)
{
Point c;
int dir;
tangential_arc(p0, p1, v0, c, dir);
return py::make_tuple(c, dir);
}
std::list<Point> spanIntersect(const Span& span1, const Span& span2)
{
std::list<Point> pts;
span1.Intersect(span2, pts);
return pts;
}
geoff_geometry::Matrix* MatrixFromVector(std::vector<double> v)
{
double array[16];
int i = 0;
for (double vi : v) {
array[i] = vi;
i++;
if (i >= 16) {
break;
}
}
return new geoff_geometry::Matrix(array);
}
std::list<CCurve> InsideCurves(const CArea& a, const CCurve& curve)
{
std::list<CCurve> curves_inside;
a.InsideCurves(curve, curves_inside);
return curves_inside;
}
std::list<Point> CurveIntersections(const CCurve& c1, const CCurve& c2)
{
std::list<Point> pts;
c1.CurveIntersections(c2, pts);
return pts;
}
std::list<Point> AreaIntersections(const CArea& a, const CCurve& c2)
{
std::list<Point> pts;
a.CurveIntersections(c2, pts);
return pts;
}
double AreaGetArea(const CArea& a)
{
return a.GetArea();
}
void init_pyarea(py::module& m)
{
py::class_<Point>(m, "Point")
.def(py::init<double, double>())
.def(py::init<Point>())
.def(float() * py::self)
.def(py::self * float())
.def(py::self / float())
.def(py::self * py::self)
.def(py::self - py::self)
.def(py::self + py::self)
.def(py::self ^ py::self)
.def(py::self == py::self)
.def(py::self != py::self)
.def(-py::self)
.def(~py::self)
.def("dist", &Point::dist)
.def("length", &Point::length)
.def("normalize", &Point::normalize)
.def("Rotate", static_cast<void (Point::*)(double, double)>(&Point::Rotate))
.def("Rotate", static_cast<void (Point::*)(double)>(&Point::Rotate))
.def_readwrite("x", &Point::x)
.def_readwrite("y", &Point::y)
.def("Transform", &Point::Transform);
py::class_<CVertex>(m, "Vertex")
.def(py::init<CVertex>())
.def(py::init<int, Point, Point>())
.def(py::init<Point>())
.def(py::init<int, Point, Point, int>())
.def_readwrite("type", &CVertex::m_type)
.def_readwrite("p", &CVertex::m_p)
.def_readwrite("c", &CVertex::m_c)
.def_readwrite("user_data", &CVertex::m_user_data);
py::class_<Span>(m, "Span")
.def(py::init<Span>())
.def(py::init<Point, CVertex, bool>())
.def("NearestPoint", static_cast<Point (Span::*)(const Point& p) const>(&Span::NearestPoint))
.def(
"NearestPoint",
static_cast<Point (Span::*)(const Span& p, double* d) const>(&Span::NearestPoint)
)
.def("GetBox", &Span::GetBox)
.def("IncludedAngle", &Span::IncludedAngle)
.def("GetArea", &Span::GetArea)
.def("On", &Span::On)
.def("MidPerim", &Span::MidPerim)
.def("MidParam", &Span::MidParam)
.def("Length", &Span::Length)
.def("GetVector", &Span::GetVector)
.def("Intersect", &spanIntersect)
.def_readwrite("p", &Span::m_p)
.def_readwrite("v", &Span::m_v);
py::class_<CCurve>(m, "Curve")
.def(py::init<>())
.def("getVertices", &getVertices)
.def("append", &CCurve::append)
.def("append", &append_point)
.def("text", &print_curve)
.def("NearestPoint", static_cast<Point (CCurve::*)(const Point& p) const>(&CCurve::NearestPoint))
.def("NearestPoint", &nearest_point_to_curve)
.def("Reverse", &CCurve::Reverse)
.def("getNumVertices", &num_vertices)
.def("FirstVertex", &FirstVertex)
.def("LastVertex", &LastVertex)
.def("GetArea", &CCurve::GetArea)
.def("IsClockwise", &CCurve::IsClockwise)
.def("IsClosed", &CCurve::IsClosed)
.def("ChangeStart", &CCurve::ChangeStart)
.def("ChangeEnd", &CCurve::ChangeEnd)
.def("Offset", &CCurve::Offset)
.def("OffsetForward", &CCurve::OffsetForward)
.def("GetSpans", &getCurveSpans)
.def("GetFirstSpan", &getFirstCurveSpan)
.def("GetLastSpan", &getLastCurveSpan)
.def("Break", &CCurve::Break)
.def("Perim", &CCurve::Perim)
.def("PerimToPoint", &CCurve::PerimToPoint)
.def("PointToPerim", &CCurve::PointToPerim)
.def("FitArcs", &CCurve::FitArcs)
.def("UnFitArcs", &CCurve::UnFitArcs)
.def("Intersections", &CurveIntersections);
py::class_<CBox2D>(m, "Box")
.def(py::init<CBox2D>())
.def("MinX", &CBox2D::MinX)
.def("MaxX", &CBox2D::MaxX)
.def("MinY", &CBox2D::MinY)
.def("MaxY", &CBox2D::MaxY);
py::class_<CArea>(m, "Area")
.def(py::init<>())
.def("getCurves", &getCurves)
.def("append", &CArea::append)
.def("Subtract", &CArea::Subtract)
.def("Intersect", &CArea::Intersect)
.def("Union", &CArea::Union)
.def("Offset", &CArea::Offset)
.def("FitArcs", &CArea::FitArcs)
.def("text", &print_area)
.def("num_curves", &CArea::num_curves)
.def("NearestPoint", &CArea::NearestPoint)
.def("GetBox", &CArea::GetBox)
.def("Reorder", &CArea::Reorder)
.def("MakePocketToolpath", &MakePocketToolpath)
.def("Split", &SplitArea)
.def("InsideCurves", &InsideCurves)
.def("Thicken", &CArea::Thicken)
.def("Intersections", &AreaIntersections)
.def("GetArea", &AreaGetArea);
py::class_<geoff_geometry::Matrix, std::shared_ptr<geoff_geometry::Matrix>>(m, "Matrix")
.def(py::init<geoff_geometry::Matrix>())
.def(py::init(&MatrixFromVector))
.def("TransformedPoint", &transformed_point)
.def("Multiply", &geoff_geometry::Matrix::Multiply);
m.def("set_units", set_units);
m.def("get_units", get_units);
m.def("holes_linked", holes_linked);
m.def("AreaFromDxf", AreaFromDxf);
m.def("TangentialArc", TangentialArc);
using namespace AdaptivePath;
py::enum_<MotionType>(m, "AdaptiveMotionType")
.value("Cutting", MotionType::mtCutting)
.value("LinkClear", MotionType::mtLinkClear)
.value("LinkNotClear", MotionType::mtLinkNotClear)
.value("LinkClearAtPrevPass", MotionType::mtLinkClearAtPrevPass);
py::enum_<OperationType>(m, "AdaptiveOperationType")
.value("ClearingInside", OperationType::otClearingInside)
.value("ClearingOutside", OperationType::otClearingOutside)
.value("ProfilingInside", OperationType::otProfilingInside)
.value("ProfilingOutside", OperationType::otProfilingOutside);
py::class_<AdaptiveOutput>(m, "AdaptiveOutput")
.def(py::init<>())
.def_readwrite("HelixCenterPoint", &AdaptiveOutput::HelixCenterPoint)
.def_readwrite("StartPoint", &AdaptiveOutput::StartPoint)
.def_readwrite("AdaptivePaths", &AdaptiveOutput::AdaptivePaths)
.def_readwrite("ReturnMotionType", &AdaptiveOutput::ReturnMotionType);
py::class_<Adaptive2d>(m, "Adaptive2d")
.def(py::init<>())
.def("Execute", &Adaptive2d::Execute)
.def_readwrite("stepOverFactor", &Adaptive2d::stepOverFactor)
.def_readwrite("toolDiameter", &Adaptive2d::toolDiameter)
.def_readwrite("stockToLeave", &Adaptive2d::stockToLeave)
.def_readwrite("helixRampTargetDiameter", &Adaptive2d::helixRampTargetDiameter)
.def_readwrite("helixRampMinDiameter", &Adaptive2d::helixRampMinDiameter)
.def_readwrite("forceInsideOut", &Adaptive2d::forceInsideOut)
.def_readwrite("finishingProfile", &Adaptive2d::finishingProfile)
//.def_readwrite("polyTreeNestingLimit", &Adaptive2d::polyTreeNestingLimit)
.def_readwrite("tolerance", &Adaptive2d::tolerance)
.def_readwrite("keepToolDownDistRatio", &Adaptive2d::keepToolDownDistRatio)
.def_readwrite("opType", &Adaptive2d::opType);
}
PYBIND11_MODULE(area, m)
{
m.doc() = "not yet";
init_pyarea(m);
};
|