srikanthkamuju Posted March 15, 2010 Posted March 15, 2010 Hi All, i am working on vba as backend, the frontend is autocad i dont know how to extrude 3DFace object programatically can any one help how to extrude a 3DFace object Thanks in Advance, Srikanth Quote
Fire_col Posted March 15, 2010 Posted March 15, 2010 Can you post it and I'll have a look at it for you? Quote
srikanthkamuju Posted March 15, 2010 Author Posted March 15, 2010 Sub Example_Add3DFace() ' This example creates a 3D face in model space. Dim faceObj As Acad3DFace Dim point1(0 To 2) As Double Dim point2(0 To 2) As Double Dim point3(0 To 2) As Double Dim point4(0 To 2) As Double ' Define the four coordinates of the face point1(0) = 0#: point1(1) = 0#: point1(2) = 0# point2(0) = 5#: point2(1) = 0#: point2(2) = 1# point3(0) = 1#: point3(1) = 10#: point3(2) = 0# point4(0) = 5#: point4(1) = 5#: point4(2) = 1# ' Create the 3DFace object in model space Set faceObj = ThisDrawing.ModelSpace.Add3DFace(point1, point2, point3, point4) ZoomAll End Sub i want to extrude this faceObj is it possible Thanks in advance Quote
Fire_col Posted March 15, 2010 Posted March 15, 2010 No, sorry, I meant can you post the drawing file? Quote
srikanthkamuju Posted March 15, 2010 Author Posted March 15, 2010 actually it is extruding in front end i want it programatically Quote
Fire_col Posted March 15, 2010 Posted March 15, 2010 Right, Sorry I'm afraid that's a bit beyond my talents. I would reccommend moving this thread to the 3d forum or the autolisp/VBA forum, you'll get the help you require from there. Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.