Hide Table of Contents

Create Thin Feature Revolve in Two Directions Example (C#)

This example shows how to create a thin feature revolve in two directions.

//----------------------------------------------------------------------------
// Preconditions: Open:
// <SolidWorks_install_dir>\samples\tutorial\api\Multiple Planar_Faces2.sldprt.
//
// Postconditions: A thin feature revolve in two directions is created.
//
// NOTE: Because the model is used elsewhere,
// do not save changes when closing it.
// ---------------------------------------------------------------------------
using SolidWorks.Interop.sldworks;
using SolidWorks.Interop.swconst;
using System;
namespace ThinFeatureRevolve_CSharp.csproj
{
    
partial class SolidWorksMacro
    {

        
public void main()
        {
            
ModelDoc2 Part = default(ModelDoc2);
            
bool boolstatus = false;

            Part = (
ModelDoc2)swApp.ActiveDoc;

            boolstatus = Part.Extension.SelectByID2(
"Sketch2", "SKETCH", 0, 0, 0, true, 0, null, 0);
            boolstatus = Part.Extension.SelectByID2(
"Axis1", "AXIS", -0.03249248386774, -0.008890295497245, -0.005457395402805, true, 16, null, 0);
            boolstatus = Part.Extension.SelectByID2(
"", "FACE", -0.03948753408952, 0.1016773485926, -0.08343298757264, true, 32, null, 0);

            
Feature myFeature = default(Feature);
            myFeature = Part.FeatureManager.FeatureRevolve2(
false, true, true, false, false, true, 4, 5, 6.28318530718, 0,
            
false, true, 0.01, 0.01, 0, 0.002, 0.01, true, true, true);

        }

        
public SldWorks swApp;
    }
}



Provide feedback on this topic

SOLIDWORKS welcomes your feedback concerning the presentation, accuracy, and thoroughness of the documentation. Use the form below to send your comments and suggestions about this topic directly to our documentation team. The documentation team cannot answer technical support questions. Click here for information about technical support.

* Required

 
*Email:  
Subject:   Feedback on Help Topics
Page:   Create Thin Feature Revolve in Two Directions Example (C#)
*Comment:  
*   I acknowledge I have read and I hereby accept the privacy policy under which my Personal Data will be used by Dassault Systèmes

Print Topic

Select the scope of content to print:

x

We have detected you are using a browser version older than Internet Explorer 7. For optimized display, we suggest upgrading your browser to Internet Explorer 7 or newer.

 Never show this message again
x

Web Help Content Version: API Help (English only) 2012 SP05

To disable Web help from within SOLIDWORKS and use local help instead, click Help > Use SOLIDWORKS Web Help.

To report problems encountered with the Web help interface and search, contact your local support representative. To provide feedback on individual help topics, use the “Feedback on this topic” link on the individual topic page.