WARNING: THIS SITE IS A MIRROR OF GITHUB.COM / IT CANNOT LOGIN OR REGISTER ACCOUNTS / THE CONTENTS ARE PROVIDED AS-IS / THIS SITE ASSUMES NO RESPONSIBILITY FOR ANY DISPLAYED CONTENT OR LINKS / IF YOU FOUND SOMETHING MAY NOT GOOD FOR EVERYONE, CONTACT ADMIN AT ilovescratch@foxmail.com
Skip to content

Commit f916e0f

Browse files
committed
Release V1.2.5
1 parent 91dddeb commit f916e0f

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

python/src/Construct/NurbsCurve.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ void cstrNurbsCurve(py::module_&m)
2020
py::class_<LNLib::NurbsCurve>(m, "NurbsCurve")
2121
.def_static("GetPointOnCurve", &LNLib::NurbsCurve::GetPointOnCurve)
2222
.def_static("ComputeRationalCurveDerivatives", &LNLib::NurbsCurve::ComputeRationalCurveDerivatives)
23-
.def_static("CanComputerDerivative", &LNLib::NurbsCurve::CanComputerDerivative)
23+
.def_static("CanComputerDerivative", &LNLib::NurbsCurve::CanComputeDerivative)
2424
.def_static("Curvature", &LNLib::NurbsCurve::Curvature)
2525
.def_static("Torsion", &LNLib::NurbsCurve::Torsion)
2626
.def_static("InsertKnot", &LNLib::NurbsCurve::InsertKnot)

python/src/Construct/UV.cpp

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,6 @@ void cstrUV(py::module_&m)
3232
.def("IsAlmostEqualTo", &LNLib::UV::IsAlmostEqualTo)
3333
.def("Length", &LNLib::UV::Length)
3434
.def("SqrLength", &LNLib::UV::SqrLength)
35-
.def("AngleTo", &LNLib::UV::AngleTo)
3635
.def("Normalize", &LNLib::UV::Normalize)
3736
.def("Add", &LNLib::UV::Add)
3837
.def("Substract", &LNLib::UV::Substract)

0 commit comments

Comments
 (0)