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? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
I need to rotate Nurbs Curve, I tried using the .transform method to change rotate using matrix but to no avail.
Look at my code
` let cNurbsW = new verb.geom.NurbsCurve(arrayCurvesWidth[0]); let tempAngle = MathUtils.degToRad(45) cNurbsW.transform( [ [Math.cos(tempAngle), -Math.sin(tempAngle), 0, 0], [Math.sin(tempAngle), Math.cos(tempAngle), 0, 0], [0, 0, 1, 0], [0, 0, 0, 1] ] ) `
How to i rotate my NubsCurve?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I need to rotate Nurbs Curve, I tried using the .transform method to change rotate using matrix but to no avail.
Look at my code
How to i rotate my NubsCurve?
The text was updated successfully, but these errors were encountered: