Home
last modified time | relevance | path

Searched refs:path_curve (Results 1 – 25 of 30) sorted by relevance

12

/dports/graphics/pcl-pointclouds/pcl-pcl-1.12.0/surface/src/3rdparty/opennurbs/
H A Dopennurbs_brep_extrude.cpp116 const ON_Curve& path_curve, in ON_BrepExtrudeHelper_MakeSides() argument
217 path_line.from = path_curve.PointAtStart(); in ON_BrepExtrudeHelper_CheckPathCurve()
218 path_line.to = path_curve.PointAtEnd(); in ON_BrepExtrudeHelper_CheckPathCurve()
543 const ON_Curve& path_curve, in ON_BrepExtrudeFace() argument
670 const ON_Curve& path_curve, in ON_BrepExtrudeLoop() argument
714 const ON_Curve& path_curve in ON_BrepExtrudeEdge() argument
757 const ON_Curve& path_curve, in ON_BrepExtrude() argument
769 ON_3dPoint P = path_curve.PointAtEnd(); in ON_BrepExtrude()
892 ON_Curve* c3 = path_curve.DuplicateCurve(); in ON_BrepExtrude()
1047 const ON_Curve& path_curve in ON_BrepExtrudeVertex() argument
[all …]
H A Dopennurbs_sumsurface.cpp157 ON_BOOL32 ON_SumSurface::Create( const ON_Curve& curve, const ON_Curve& path_curve ) in Create() argument
161 ON_Curve* pPathCurve = path_curve.DuplicateCurve(); in Create()
/dports/math/gismo/gismo-21.12.0/external/onurbs/
H A Dopennurbs_brep_extrude.cpp116 const ON_Curve& path_curve, in ON_BrepExtrudeHelper_MakeSides() argument
217 path_line.from = path_curve.PointAtStart(); in ON_BrepExtrudeHelper_CheckPathCurve()
218 path_line.to = path_curve.PointAtEnd(); in ON_BrepExtrudeHelper_CheckPathCurve()
543 const ON_Curve& path_curve, in ON_BrepExtrudeFace() argument
673 const ON_Curve& path_curve, in ON_BrepExtrudeLoop() argument
720 const ON_Curve& path_curve in ON_BrepExtrudeEdge() argument
766 const ON_Curve& path_curve, in ON_BrepExtrude() argument
781 ON_3dPoint P = path_curve.PointAtEnd(); in ON_BrepExtrude()
906 ON_Curve* c3 = path_curve.DuplicateCurve(); in ON_BrepExtrude()
1061 const ON_Curve& path_curve in ON_BrepExtrudeVertex() argument
[all …]
H A Dopennurbs_brep.h4144 const ON_Curve& path_curve,
4187 const ON_Curve& path_curve,
4221 const ON_Curve& path_curve,
4251 const ON_Curve& path_curve
4282 const ON_Curve& path_curve
H A Dopennurbs_sumsurface.h93 const ON_Curve& path_curve
H A Dopennurbs_sumsurface.cpp157 ON_BOOL32 ON_SumSurface::Create( const ON_Curve& curve, const ON_Curve& path_curve ) in Create() argument
161 ON_Curve* pPathCurve = path_curve.DuplicateCurve(); in Create()
/dports/cad/libredwg/libredwg-0.12.4/test/unit-testing/
H A Dloftedsurface.c32 BITCODE_H path_curve; in api_process() local
97 CHK_ENTITY_H (_obj, LOFTEDSURFACE, path_curve); in api_process()
H A Ddynapi_test.c14266 BITCODE_H path_curve; in test_LOFTEDSURFACE() local
14267 if (dwg_dynapi_entity_value (loftedsurface, "LOFTEDSURFACE", "path_curve", &path_curve, NULL) in test_LOFTEDSURFACE()
14268 && !memcmp (&path_curve, &loftedsurface->path_curve, sizeof (BITCODE_H))) in test_LOFTEDSURFACE()
/dports/graphics/pcl-pointclouds/pcl-pcl-1.12.0/surface/include/pcl/surface/3rdparty/opennurbs/
H A Dopennurbs_brep.h4144 const ON_Curve& path_curve,
4187 const ON_Curve& path_curve,
4221 const ON_Curve& path_curve,
4251 const ON_Curve& path_curve
4282 const ON_Curve& path_curve
H A Dopennurbs_sumsurface.h93 const ON_Curve& path_curve
/dports/graphics/py-wand/Wand-0.6.7/tests/
H A Ddrawing_test.py476 draw.path_curve(to=(25, 25),
478 draw.path_curve(to=(25, 0),
491 draw.path_curve(to=(5, 7))
493 draw.path_curve(controls=(5, 7))
/dports/math/py-matplotlib/matplotlib-3.4.3/src/
H A D_backend_agg.h534 curve_t path_curve(path_snapped); in draw_markers()
535 path_curve.rewind(0); in draw_markers()
602 while (path_curve.vertex(&x, &y) != agg::path_cmd_stop) { in draw_markers()
634 while (path_curve.vertex(&x, &y) != agg::path_cmd_stop) { in draw_markers()
/dports/math/py-matplotlib2/matplotlib-2.2.4/src/
H A D_backend_agg.h537 curve_t path_curve(path_snapped); in draw_markers()
538 path_curve.rewind(0); in draw_markers()
605 while (path_curve.vertex(&x, &y) != agg::path_cmd_stop) { in draw_markers()
637 while (path_curve.vertex(&x, &y) != agg::path_cmd_stop) { in draw_markers()
/dports/graphics/py-wand/Wand-0.6.7/docs/guide/
H A Ddraw.rst291 - :meth:`~wand.drawing.Drawing.path_curve()` draws a cubic bezier curve.
304 :meth:`~wand.drawing.Drawing.path_curve()` and
324 draw.path_curve(to=(40, 0),
328 draw.path_curve(to=(40, 0),
/dports/audio/calf-lv2/calf-648f05e85287cf08af198bdd9e52baba95b502ec/bigbull/
H A Dconndiagram.py49 def path_curve(x1, y1, x2, y2, x3, y3): function
58 return path_move(x1, y1) + path_curve(x1 + dist, y1, x2 - dist, y2, x2, y2)
/dports/graphics/py-wand/Wand-0.6.7/wand/
H A Ddrawing.py1245 def path_curve(self, to=None, controls=None, smooth=False, relative=False): member in Drawing
/dports/graphics/py-wand/Wand-0.6.7/docs/
H A Dchanges.rst691 - Added :meth:`~wand.drawing.Drawing.path_curve()` method.
/dports/cad/libredwg/libredwg-0.12.4/include/
H A Ddwg.h4856 BITCODE_H path_curve; member
/dports/cad/libredwg/libredwg-0.12.4/src/
H A Ddwg.spec9247 FIELD_HANDLE (path_curve, 5, 0);
H A Ddynapi.c2283 { "path_curve", "H", sizeof (BITCODE_H), OFF (struct _dwg_entity_LOFTEDSURFACE, path_curve),
/dports/cad/libredwg/libredwg-0.12.4/doc/
H A DLibreDWG.info-12592 'path_curve'
H A Ddynapi.texi2526 @item path_curve
/dports/cad/libredwg/libredwg-0.12.4/bindings/python/
H A DLibreDWG.py5539path_curve = property(_LibreDWG.Dwg_Entity_LOFTEDSURFACE_path_curve_get, _LibreDWG.Dwg_Entity_LOFT… variable in Dwg_Entity_LOFTEDSURFACE
/dports/cad/stepcode/stepcode-0.8/data/cd242/
H A D242_n2813_mim_lf.exp6615 path_curve : curve;
/dports/cad/stepcode/stepcode-0.8/data/STEPTools_merged_schema/
H A Dmodified_step_merged_cad_schema.exp.broken6858 path_curve : curve;

12