solidworks freeform

Learn about solidworks freeform, we have the largest and most updated solidworks freeform information on alibabacloud.com

SolidWorks two times development -05-assembly body insert Parts

Insert SolidWorks Two development--insert parts in assembly When inserting parts into the assembly, we use the addcomponent function. If you need to configure the selected parts, you need to use ADDCOMPONENT4. Learn the grammar first: ADDCOMPONENT4: retval = Assemblydoc.addcomponent4 (Compname, ConfigName, x, Y, z) Input: (BSTR) compname Path name of a loaded part or assembly to add as a component Input: (BSTR) ConfigName

SolidWorks two times Development -08--what is the characteristic of judgment

Got a feature feature, how to judge the kind? If we define a feature object: Dim curfeature As Sldworks.feature Then you get this feature through Selectmgr, and then you can use feature. Gettypename to judge the kind of: Select case Curfeature. Gettypename Case "Cut" ' a stretch removal feature Do sth. Case "Holewzd" ' an irregular hole feature Do sth. Case Else End Select End Select This is the syntax: Syntax (OLE Automation) retval = Feature.gettypename () It will

Solidworks how to draw penetrating point __solidworks

The original blog link in my official website, the URL is: http://www.aobosir.com/blog/2017/02/19/SolidWorks-how-to-draw-through-points/ Penetration points are: between two sketches, one of the points in the sketch penetrates a line within another sketch. First of all, you draw two sketches first. Then go to one of the sketches in which you want to select the point , and edit the sketch . Select the point First, then hold down the Ctrl key and s

SolidWorks Two development -02-two APIs for accessing features

Visit | Visit SolidWorks Two development -02-two APIs for accessing features To learn two APIs: SelectByID2 and GetSelectedObject5. The first of these functions is to select the object by giving the name of the object. The second gets the object by the index that was selected before the program was enabled. Look at the following program: Option Explicit Dim Swapp as Sldworks.sldworks Dim Model as ModelDoc2 Dim feature as Feature Dim Boolstatus

SolidWorks 2013 Multi-lingual 32 64-bit (with keygen) full function

1CDProficad v7.5.4 1CDSolidcam.2012.sp6.win32_64 2DVDTekla.structures.v19.0.r1.win32_64 2CDFieldmove 2013.1.1 Win32 1CDGeostru geoutility 2012.11.0.509 1CDLOGOPRESS3 SP1.4.5 for SolidWorks 2012-2013 win32_64 1CDBentley prostructures v8i (selectseries 5) 08.11.10.54 for AutoCAD 1CDGeostru Liquiter 2012.11.0.266 1CDGeostru MDC 2012.15.1.587 1CDGeostru Slope 2013.8.18.1.1001 1CDGeostru Stratigrapher 2012.20.0.252 1CDGemcom.minex.v6.13.full-iso 1CDGeostr

SolidWorks Knowledge Accumulation Series-01

SolidWorks learns 1. Basic Knowledge points Summary Datum view main: Look back from the front, top of the baseline: from the top down, the upper view of the baseline side view: Right-to-left, right-looking datum sketch requires a single seal, sketch to be attached to a position Draw approximate shape Determining relations, location relationships, positioning dimensions Callout Sketch Shape dimensions Shortcut key zoom: Middle key

Notes for using the COM interface to obtain Array data during SolidWorks asynchronous mode development

This article is a problem encountered in the actual development process. I have received help from my colleagues and would like to thank you. In the secondary development process of SolidWorks, the asynchronous mode is used, and the following code has a problem in use (where the problem may occur, I have watched it) BOOL CSWFun: GetProfileLength (CComPtr After the code is changed to the following, it will be normal BOOL CSWFun::GetProfileLength(CCo

[Secondary Development of SolidWorks] sketch drawing-Overview

When you open a new part, the first feature you generate is a sketch. A sketch is the basis of a 3D model. A sketch generates an entity after being stretched, rotated, scanned, or loosed, and then modifies the entity. This is the general modeling process of SolidWorks. To insert a sketch, you must first determine its placement plane. It can be a preset reference plane or a user-painted reference plane. Or a plane on the object. The three main inform

SolidWorks entity Conversion Sheet Metal and transition commands what?

Many people feel that the creation of the entity is simpler than the surface and the sheet metal, so here are some ways to convert the entity to sheet metal in SolidWorks. 1, here at random to draw a step entity, and create a cut sketch, finished using the conversion sheet Metal command. 2, according to the steps to select the fixed surface and bending line, and then make a cut 3, the width of the inc

SolidWorks how to draw a hinge hole bolt two-dimensional engineering drawing?

SolidWorks How to draw a hinge hole bolt two-dimensional engineering drawing? 1, click on the blank page "new" frame to the right of the drop-down arrow, select "From parts/assembly drawings to make engineering drawings" 2, select "A4" Engineering drawings, click "OK", into the engineering drawing editor 3, you can see the right side "drag the view to the engineering drawing drawings", which "on", "after" and "isometric" t

SolidWorks two times development--10--from the example search

SolidWorks API Help is still very comprehensive, there are many see simple and effective procedures, all day in the API help bubble, and now the speed of the program is faster. It's like I've been recording macros in Excel all day long to see the code. The following program is in the API help to show all parts of the assembly. I use it for my colleagues, they feel good:). The program uses a simple recursive method to traverse the assembly. Make all As

SolidWorks secondary development asynchronous mode, using COM

Create a console project with VC, supporting ATL and MFC Copy sldworks. tlb, swconst. tlb, and swpublished. tlb under the SolidWorks installation path to the project folder. Add the following code to the Code: # Import "sldworks. tlb "raw_interfaces_only, raw_native_types, no_namespace, named_guids # import" swpublished. tlb "raw_interfaces_only, raw_native_types, no_namespace, named_guids # import" swconst. tlb "raw_interfaces_only, callback, no_nam

Solidworks API Help Code Error "The attribute specifier is not a complete statement. Use the line continuation character to apply the attribute to the following statement. "The Solution!

I believe you will often put the code in the SolidWorks API help directly to the direct use of the code is not available today. Now share your experience:True) > _publicClass clspropmgrThe above code will error: "The attribute specifier is not a complete statement." Use the line continuation character to apply the attribute to the following statement. "How to solve it? It's really simple!Workaround 1:Two lines of composite lineTruepublicClass clspropm

MCADEx development SolidWorks secondary development to obtain the maximum shape of the model, mcadexsolidworks

MCADEx development SolidWorks secondary development to obtain the maximum shape of the model, mcadexsolidworks Please follow the MCADEx Official Website: www.mcadex.com IModelDoc2 * pMdl; ISwApp-> get_IActiveDoc2 ( pMdl ); If (pMdl = NULL) Return S_FALSE; // Obtain the Part CComPtr PMdl-> QueryInterface (IID_IPartDoc, (LPVOID *) pPart ); If (pPart = NULL) Return S_FALSE; // Obtain PartBox VARIANT dPoint; PPart-> GetPartBox (FALSE, dP

SolidWorks how to draw a planar graphic

SolidWorks How to draw a planar graphic 1, open the software, and create a new part diagram. 2, select the front view, right click, click "Face" 3, click to select "Sketch Drawing", click Sketch 1, into the front view of the sketch editing mode 4. You can see the Operation command of sketch drawing, choose some kind of drawing command to draw the corresponding figure in sketch. 5, for

SolidWorks two times Development -06-add fit in assembly

SolidWorks two times Development -06-add fit in assembly After three days of tossing and finishing, the functional modules of the plan were finally completed. Automatically determine the insertion of suitable parts in an assembly and add a fit. In the previous articles I have basically explained how to get the data information of the parts, how to insert the parts, how to get the selected features, etc. The following only

Put a color coat on the Freeform Data window column

Data PB in the Data Window column border style only a few, if you want the border color is colored there is no way. In fact, you can use dynamic create rectangle, change the border color of the Data window column, mainly applicable to free format

Freeform Data Window column for PB put on a colored coat

PB in the Data Window column border style only a few, if you want the border color is colored there is no way. In fact, you can use dynamic create rectangle, change the border color of the Data window column, applicable to free format (do not need

SolidWorks two times Development -09--add Coordination Reference

Refer to the following code to select the two sides of the part, and then add a matching reference for this part, first select the face for the reference of the first reference surface. and is the same direction, coincide with. The second one is

SolidWorks Two Development Learning (2) How to select a sketch and traverse all the lines in the sketch (non-sketch edit state)

1 ImportsSolidWorks.Interop.sldworks2 ImportsSolidWorks.Interop.swconst3 ImportsSystem.Runtime.InteropServices4 ImportsSystem5 6 Partial ClassSolidworksmacro7 8 Public SubMain ()9 Ten DimSwselmgr asSelectionmgr One DimSwdoc

Total Pages: 15 1 .... 3 4 5 6 7 .... 15 Go to: Go

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.