We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The GShark.Geometry.NurbsCurve does not offer a constructor for NURBS with KnotVector.
This is often necessary when reading NURBS from other sources (e.g. STEP or OCX files).
Please add a publically available constructor, which allows instantiating NURBS with KnotVector.
Currently, I fix that visibility problem with a simple wrapper class
public class OCXNurbsCurve : GShark.Geometry.NurbsBase { public OCXNurbsCurve(int degree, GShark.Core.KnotVector knots, List<Point4> controlPoints) : base(degree, knots, controlPoints) { } }
The text was updated successfully, but these errors were encountered:
Changes for issue
065c901
Add a Public Constructor for NURBS with KnotVector GSharker#424
See my fork including the changes and a test case
Sorry, something went wrong.
No branches or pull requests
The GShark.Geometry.NurbsCurve does not offer a constructor for NURBS with KnotVector.
This is often necessary when reading NURBS from other sources (e.g. STEP or OCX files).
Please add a publically available constructor, which allows instantiating NURBS with KnotVector.
Currently, I fix that visibility problem with a simple wrapper class
The text was updated successfully, but these errors were encountered: