https://github.com/codereclaimers/inventor-code-samples
Autodesk Inventor code samples
https://github.com/codereclaimers/inventor-code-samples
Last synced: about 1 year ago
JSON representation
Autodesk Inventor code samples
- Host: GitHub
- URL: https://github.com/codereclaimers/inventor-code-samples
- Owner: CodeReclaimers
- License: mit
- Created: 2016-06-07T01:58:42.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2022-04-09T12:17:59.000Z (about 4 years ago)
- Last Synced: 2025-02-01T08:13:42.002Z (about 1 year ago)
- Language: C#
- Homepage:
- Size: 14.6 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
## Autodesk Inventor code samples ##
### bspline-surface ###
This example shows how to create a B-spline surface from an arbitrarily-chosen set of control points, z = 0.3 * cos(2*x^2 + 2*y^2).
Originally this example was built to help troubleshoot the long time required to create complex splines.
For a spline with m-by-n control points, the time seems to go as O(n^3 * m^3) in Inventor 14.
### interactive-mesh ###
This example shows how to create a static triangle mesh in the current document. (Yeah, I know the project name is misleading, but I'm too lazy to change it.)