-
Import geometry in SpaceClaim from project schematic
What is the script to run at the project page level that will create a Static Structural component system, and then open SpaceClaim to import a geometry file?
-
Inserting a .scdoc in another scdoc in C#
How can I insert another .scdoc in my active scdoc similar to the insert file option under the assembly tab in Space Claim in C#
-
Retrieve the current directory of an open project in Ansys Space Claim with C#
How can I retrieve the current directory of an open project in Ansys Space Claim in C#. This is for a personalized tool embedded in the tool bar.
-
How to send arguments to SpaceClaim executed in batch with a script?
Could we send arguments to be used in a script when we launch SpaceClaim in batch?
-
How to start Workbench project from the command line and made modification in the geometry
This question is a continuation of: How to start workbench in batch mode and automatically execute a python script? (from a command prompt)
-
Is it possible to only select recently created elements in a script?
I am running a script that creates 150k points in Space Claim. Following this creation of points I am creating a component renaming it and copying points to the created component. I would like this to work independently of the scdoc, for example if curves already exist under root or other components exist my following code…
-
How to create points in a component in SpaceClaim?
When I create points in SpaceClaim with the following command : point = Point.Create(X[i],Y[i],Z[i]) result = DesignCurve.Create(GetRootPart(),CurveSegment.Create(PointCurve.Create(point)),False).SetColor(None, Color.FromArgb(transparency, redColor,greenColor,blueColor)) This created points in curves folder under root…
-
Can we set visibility of created curves on same line of code?
Is is possible to set the visibility of created curves on this same line of code ? result = DesignCurve.Create(GetRootPart(),CurveSegment.Create(PointCurve.Create(point)),False).SetColor(None, Color.FromArgb(transparency, redColor,greenColor,blueColor))