avi19
Mechanical
- Dec 6, 2014
- 7
tell me the code to draw line using parametric equation in vb
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Dim p0 As New NXOpen.Point3d(x0,y0,z0)
Dim p1 As New NXOpen.Point3d(x1,y1,z1)
Dim myLine As NXOpen.Line = workPart.Curves.CreateLine(p0, p1)
Dim myLine As Snap.NX.Line = Snap.Create.Line(x0,y0,x1,y1)