Smartplant Programing
Smartplant Programing
SmartPlant 3D Programming I
Student Workbook
Copyright
Copyright © 2004-2008 Intergraph Corporation. All Rights Reserved.
Including software, file formats, and audiovisual displays; may be used pursuant to applicable software license
agreement; contains confidential and proprietary information of Intergraph and/or third parties which is protected by
copyright law, trade secret law, and international treaty, and may not be provided or otherwise made available
without proper authorization.
Portions of this software are owned by Spatial Corp. © 1986-2008. All Rights Reserved.
Trademarks
Intergraph, the Intergraph logo, PDS, SmartPlant, FrameWorks, I-Convert, I-Export, I-Sketch, SmartMarine,
IntelliShip, INtools, ISOGEN, MARIAN, SmartSketch, SPOOLGEN, SupportManager, and SupportModeler are
trademarks or registered trademarks of Intergraph Corporation or its subsidiaries in the United States and other
countries. Microsoft and Windows are registered trademarks of Microsoft Corporation. ACIS is a registered
trademark of SPATIAL TECHNOLOGY, INC. Infragistics, Presentation Layer Framework, ActiveTreeView Ctrl,
ProtoViewCtl, ActiveThreed Ctrl, ActiveListBar Ctrl, ActiveSplitter, ActiveToolbars Ctrl, ActiveToolbars Plus Ctrl,
and ProtoView are trademarks of Infragistics, Inc. Portions of 2D DCM, 3D DCM, and HLM from D-Cubed
Limited are incorporated. All rights reserved. Oracle, JD Edwards, PeopleSoft, and Retek are registered trademarks
of Oracle Corporation and/or its affiliates. Other brands and product names are trademarks of their respective
owners.
Table of Contents
INTRODUCTION.....................................................................................................................................5
UNDERSTANDING
UNDERSTANDING SMART
SMART PLANT 3D DATA
DATA MODEL..........
MODEL.....................................
...................................................... .......... 6
.....................................
LAB 2: CREATE A QUERY TO FIND OUT THE TOTAL NUMBER OF PART CLASSES IN THE
CATALOG DATABASE
DATABASE ......................................................
........................... ......................................................
...................................................... ............ 23
.......................................
LAB 3: CREATE A QUERY TO LIST ALL SMART EQUIPMENT PARTS IN THE CATALOG
DATABASE
DATABA SE ......................................................
........................... ......................................................
......................................................
..................................................... .... 25
..............................
LAB 5: LIST ALL EQUIPMENTS LOCATED IN THE MODEL WITH ITS CORRESPONDING PART
NAME FROM THE CATALOG
CATALOG DATABA
DATABASE
SE........................
...................................................
...................................................... ............ 29
.......................................
LAB 6: LIST ALL PIPE RUNS AND PIPELINE NAMES LOCATED IN THE MODEL DATABASE..... ... 32
DATABASE ........
LAB 8: LIST ALL PIPE COMPONENT OCCURRENCES IN THE MODEL DATABASE PER PIPERUN37
LAB 11:
11: CREATING A NAMING RULE FOR PIPERUN
PIPERUN OBJECTS
OBJECTS .................................................. .... 53
........................ ..............................
3
LAB 20:
20: ELECTRICAL
ELECTRICAL JUNCTION
JUNCTION BOX SYMB
SYMBOL
OL (OP
(OPTIONAL)
TIONAL) ..................................................... .. 125
........................... ............................
APPENDIX..
APPENDIX.............................
......................................................
......................................................
......................................................
..................................................... .. 145
............................
Symboll Helper Ref
Symbo Reference
erence .............
...........................
...........................
..........................
..........................
..........................
...........................
...........................
.......................... .... 145
.................
Geometry Factory Programming Reference.....
Geometry Reference..................
..........................
...........................
...........................
..........................
.......................... ............. 153
..........................
NamingRulesHelpe
NamingR ulesHelperr Obje
Object...........
ct.........................
...........................
..........................
..........................
..........................
...........................
...........................
.......................... .... 183
.................
Attribute Helper servic
servicee ............
.........................
..........................
...........................
...........................
..........................
..........................
..........................
........................... ........ 185
......................
Relation Helper service.................
service.... ...........................
...........................
..........................
..........................
..........................
...........................
...........................
.......................... .... 191
.................
SP3D Reference
Referencess Tool.
Tool..............
..........................
..........................
...........................
...........................
..........................
..........................
..........................
........................... ........ 197
......................
Debugging
Debu gging You
Yourr Code ............
.........................
..........................
..........................
...........................
...........................
..........................
..........................
.......................... ........... 199
........................
Creation of Cab Files ............
.........................
..........................
..........................
..........................
...........................
...........................
..........................
.......................... ............. 200
..........................
4
Introduction
The Student workbook is designed as an aid for students attending the SP3D Programming I
class presented by Intergraph Corporation, and it’s a supplement to the standard product
documentation.
Objective
This document is designed to provide a guideline for people who need to design symbol
definitions and naming rules for the SmartPlant 3D application. This workbook includes, but is
not limited to the following:
• Provides an overview of customization with the SmartPlant 3D software using standard
Windows™ programming tools and languages like Visual Basic™.
• Describes some of the tools that can be used to design new symbol entities and naming
rules.
• Provides examples of workflow customization.
Assumptions are made here that the user has a prerequisite knowledge of the SmartPlant 3D
reference data.
Course description
• SmartPlant 3D Data Model
• Naming Rules
• Visual Basic Symbol Creation
5
6
7
7
8
9
10
11
Interface
Relation
Collection
Related
Object
12
13
14
15
16
1. Open the SP3D Schema Browser and point to a catalog schema.
17
2. Select View -> Options to open the option dialog box. Enable the check box to displays
Relation Collections.
3. Exit the SP3D Schema Browser and re-open it to read the change. We are interested in query
part classes, thus we must start our navigation at Ref Data Business Services.
18
4. Expand CPartClass node. The tool shows a list of interfaces that are implemented by
CPartClass. Since we are looking for the name of a part class, let us expand IJDPartClass.
5. Clicking on the PartClassType property in the tree view will show information about the
selected item in the detail view. The DBViewName corresponding to IJDPartClass is
PartClassType.
19
6. To search for part classes in the catalog database, we must execute a SQL query that searches
for all entries in the view PartClassType. We can do this using a SELECT statement on the
report database. The SELECT query is as follows:
This will return all part classes of type ShapesClass in the catalog database.
If you are using Microsoft SQL 2005 to host the SP3D databases, then you can use Microsoft
SQL Server Management Studio to run the SQL query. Set the report database to be the
active database when running the query.
20
If you are using Oracle 10g to host the SP3D databases, then you can use SQL plus to run the
SQL query:
Open Oracle SQL Plus or Oracle SQL Developer from the Start Menu.
Log on using the following data:
21
From the SQL Command prompt, type the lines as shown here:
ALTER SESSION SET CURRENT_SCHEMA = SP3DTrain_RDB;
Select Name, PartClassType from
JDPartClass
Where PartClassType = 'ShapesClass';
22
Using Oracle SQL Plus or Oracle SQL Developer, the SELECT query is as follows:
23
24
2. Expand Smart Equipment Part node. The tool shows a list of interfaces that are implemented
by Smart Equipment Part. Thus to search for all equipment parts in the catalog database, we
must execute a SQL query that searches for all entries in the view JSmartEquipmentPart. We
can do this using a SELECT statement on the report database. The SELECT query is as
follows:
3. We are also interested to get the description and the name of the equipment part.
4. This is done by using the “SQL JOIN” clause on the views that return the equipment name
and the equipment description. Use the “SQL Order by” clause to sort the equipment parts by
their name.
5. Using Microsoft SQL Server Management Studio, the SELECT query is as follows:
:
Select
x2.Name,
x6.PartDescription from
JSmartEquipmentPart x1
Join JSmartItem x2 on x2.oid = x1.oid
Join JDPart x6 on x6.oid = x1.oid
Order by x2.Name
25
Using Oracle SQL Plus or Oracle SQL Developer, the SELECT query is as follows:
26
2. Expand CPart node. The tool shows a list of Equipment shape part classes. Expand one of
them and notice that if a part class is located in the palette, then it must implement the
IJUAPaletteInfo
Using Microsoft SQL Server Management Studio, the SELECT query is as follows:
Select
PartNumber,
PartDescription,
SequenceNumber from JDPart x1
Join JUAPaletteInfo x2 on x2.oid = x1.oid
27
Using Oracle SQL Plus or Oracle SQL Developer, the SELECT query is as follows:
28
1. We are interested in query Smart Equipment occurrences located in the model, thus we must
start our navigation at Equipment Business Services under the CPSmartEquipment folder.
2. Expand CPSmartEquipment node. The tool shows a list of interfaces that are implemented by
Smart Equipment. Since we are looking for a relation to the catalog, let us expand
IJSmartOccurrence (which is the interface implemented by all smart occurrences).
3. You will see a pink bubble that shows the toSI_ORIG relation collection. Expand the node
further and you will find the property you are looking for on an interface at the other end of
the relationship.
4. We are also interested to get the name of the smart equipment occurrence. We can use
use the
IJNamedItem interface which provides the object name.
29
5. Using Microsoft SQL Server Management Studio, the SELECT query is as follows:
Select
x2.ItemName as OccName,
x4.Name as PartName
from
JEquipmentOcc x1
Join JNamedItem x2 on x2.oid = x1.oid
Join XSOtoSI_R x3 on x3.oidorigin = x1.oid
Join JSmartItem x4 on x4.oid = x3.oiddestination
Using Oracle SQL Plus or Oracle SQL Developer, the SELECT query is as follows:
30
31
•
•
We
Use must begin our hunttounder
the IJSystemChild theparent
get the Common Route
object. Business
In order Service
for an object folder
to participate in the
System Hierarchy, it must implement the IJSystemChild and establish a relationship to a
design parent
• Find the JRtePipeRun in the Common Route Business Service folder
Solution:
Using Microsoft SQL Server Management Studio, the SELECT query is as follows:
Select
x4.ItemName as PipeRunName,
x3.ItemName as Parent_System
from JRtePipeRun x1
Join JNamedItem x4 on x4.oid = x1.oid
Join XSystemHierarchy x2 on x2.oiddest
x2.oiddestination
ination = x1.oid
x1.oid
Join JNamedItem x3 on x3.oid = x2.oidorigin
32
Using Oracle SQL Plus or Oracle SQL Developer, the SELECT query is as follows:
33
2. Expand Pipe Component occurrence node. The tool shows a list of interfaces that are
implemented by pipe component occurrence. Since we are looking for object to note relation,
let us expand IJDObject (which is the interface which defines that a Pipe component is an
‘object’).
3. You will see a pink bubble that shows the GeneralNote relation collection.
4. Expand the node further and you will find the property you are looking for on an interface at
the other end of the relationship.
34
5. Click on IJDObject to see that the DBViewName corresponding to it is JDObject in the detail
view.
6. Thus to search for all ‘object’s in the database, we must execute a SQL query that searches
for all entries in the view JDObject. We can do this using an SQL query on the Report
database.
7. However, we are interested in all objects that have a relationship with a note. Thus let us
make a query for all relationships between objects and notes. This is done using the view
corresponding to the relationship.
8. Finally we will search for all notes in the database using the following query
35
9. To find the objects which are related to notes, we will make a join between the queries as
follows
10. Using the “SQL JOIN” clauses, we will get a list of all the objects (and only the objects)
which has notes associated with them.
11. To simplify the query, we can use aliases for the view names
12. Change the query to return only the Note text column. Therefore, the SELECT query is as
follows:
36
•
•
We
Findmust begin our hunt under
the JRteCompOccur in thethe Common
Common Route
Route Business
Business Service
Service folder
folder
• Use the MadeFrom relation to find the part in the catalog
• Use the IJDPipeComponent interface to get the Industry Commodity Code of the part
occurrence
• Use the Run to Part (OwnParts) relation to get to the PipeRun object. This relation is
provided by IJRtePathGenPart interface
• Use the “SQL Group by” clause and the aggregate function “Count(*)” to get the total
number of part occurrences in the model database
37
Solution:
Select
x3.IndustryCommodityCode,
x6.ItemName as 'PipeRun_Name',
Count(*) as qty
from JRteCompOccur x1
JOIN XMadeFrom x2 ON (x2.OidOrigin = x1.Oid)
JOIN JDPipeComponent x3 ON (x3.Oid = x2.OidDestination)
JOIN XOwnsParts x5 ON (x5.oiddestination = x1.oid)
JOIN JNamedItem x6 on (x6.oid = x5.oidorigin)
Group by x3.IndustryCommodityCode, x6.ItemName
Using Microsoft SQL Server Management Studio, the SELECT query is as follows:
38
Using Oracle SQL Plus or Oracle SQL Developer, the SELECT query is as follows:
39
40
•
We
• Use must begin our hunt
the MadeFrom under
relation the Common
to find the part inRoute Business Service folder
the catalog
• Use the IJDPipeComponent view to get the Industry Commodity Code and the
Commodity Type of the part occurrence
• Use the Run to Part (OwnParts) relation to get to the PipeRun object. This relation is
provided by IJRtePathGenPart interface
41
Solution:
Select
x3.IndustryCommodityCode,
x6.ItemName as 'PipeRun_Name',
x4.ShortStringValue as 'CommodityType',
count(*) as qty
from JRteCompOccur x1
Join XMadeFrom x2 ON (x2.OidOrigin = x1.Oid)
Join JDPipeComponent x3 ON (x3.Oid = x2.OidDestination)
Join CL_PipingCommodityType x4 ON (x4.ValueID = x3.CommodityType)
Join XOwnsParts x5 ON (x5.oiddestination = x1.oid)
Join JNamedItem x6 ON (x6.oid = x5.oidOrigin)
WHERE (x3.CommodityClass = 5)
Group by x3.IndustryCommodityCode, x6.ItemName, x4.ShortStringValue
Using Microsoft SQL Server Management Studio, the SELECT query is as follows:
42
Using Oracle SQL Plus or Oracle SQL Developer, the SELECT query is as follows:
43
44
This session will demonstrate an implementation of a naming rule for pipeline system objects.
This component will generate a name for pipeline objects as shown here:
c:\train\CustomNameRule
2. Copy the Naming Rule Visual Basic Template Project provided by the instructor to
c:\train\CustomNameRule\Template.
Note:
• The Naming Rule template is delivered under
[Installation]\Programming\ExampleCode\Symbols\NamingRuleTemplate
c:\train\CustomNameRule\lab1
45
8. Setup the Visual Basic Development Environment as shown below:
46
9. Go to the Visual Basic Explorer Window and select the Project node. Select File -> Save
Project As option to save the project as Pipeline.vbp under the lab1 directory.
10. Go
Fileto->the Visual
Save Basic Explorer As
TemplateName.cls Window
optionand select
to save thethe TemplateName
class class node. Select
module as CPipeline.cls under
lab1 directory.
47
11. Go to the Properties Window and change the name of the Project and ClassModule as shown
here:
12. Go to the General Declarations section and change the value of the Constant Module variable
from “TemplateNamingRules:” to “Pipelines:”
14. Access the subroutine ComputeName section by selecting IJNameRule in the Object List
Box and select the ComputeName in the Procedure List Box.
48
Hint:
Declare an object variable to hold a reference to the IJNamedItem
Dim oChildNamedItem
oChildNamedItem As IIJNamedItem
JNamedItem
Dim strChildName
strChildName As Str
String
ing
Set oChildNamedItem = oObject
strChildName = vbNullString
Dim oAttributes
oAttributes As IJDAttributes
IJDAttributes
Set oAttributes = oObject
Dim strSequenceNumber
strSequenceNumber As S
String
tring
18. Use IJDAttributes interface to get a collection of attributes of the selected item. Finally, Use
19. Declare local variables to hold the fluid codelist value and short description.
Dim FluidCodeID
FluidCodeID As Long
Dim strFluidCode
strFluidCode As String
strFluidCode
strFluidCo de = vbNullString
20. Use IJDAttributes and IJDCodeListMetaData interfaces to get the fluid code short
description.
Set m_oCodeLis
m_oCodeListMetadata
tMetadata = GetCatalogR
GetCatalogResourceManager
esourceManager
FluidCodeID = _
oAttributes.CollectionOfA
oAttributes.CollectionOfAttributes("IJP
ttributes("IJPipelineSystem")
ipelineSystem").Item("FluidCode")
.Item("FluidCode").Value
.Value
strFluidCode
strFluidCo de = m_oCodeLis
m_oCodeListMetadata.ShortStri
tMetadata.ShortStringValue("F luidCode", FluidCodeID)
ngValue("FluidCode",
49
23. Insert into your existing project the following Private Function. Open the GetCatalog.txt file
located in the template directory file and use Cut/Paste operation to insert the lines. The
inserted lines should look like this:
'------------------------------------------
'---------------------------------------------------------
-------------------------
---------------------------
---------------------
----
'Description
' Function returns the CatalogResourceManag
CatalogResourceManager er
'------------------------------------------
'---------------------------------------------------------
-------------------------
---------------------------
---------------------
----
Private Function GetCatalogResourceManager() As IUnknown
Const METHOD = "GetCatalogResourceManager"
On Error GoTo ErrHandler
Dim oDBTypeConfig
oDBTypeConfig As IJDBTypeCo
IJDBTypeConfiguration
nfiguration
Dim pConnMiddle
pConnMiddle As IJDConnectMiddle
IJDConnectMiddle
Dim pAccessMiddle
pAccessMiddle As IJDAccessMiddl
IJDAccessMiddlee
Dim jContext
jContext As IJCont
IJContext
ext
Set jContext = GetJContext()
Set oDBTypeCon
oDBTypeConfigfig = jContext.GetSer
jContext.GetService("DBTypeC
vice("DBTypeConfiguration")
onfiguration")
Set pConnMiddle = jContext.G
jContext.GetService("ConnectMid
etService("ConnectMiddle")
dle")
Set pAccessMiddle = pConnMiddle
Dim strCatlogDB
strCatlogDB As Str
String
ing
strCatlogDB
Set = oDBTypeConfig.g
GetCatalogRoDBTypeConfig.get_DataBaseFr
esourceManageret_DataBaseFromDBType("
GetCatalogResourceManager omDBType("Catalog")
Catalog") strCatlogDB)
= pAccessMiddle.GetResourceManager(
pAccessMiddle.GetResourceManager(strCatlogDB)
Set jContext = Nothing
Set oDBTypeConfig = Nothing
Set pConnMiddle = Nothing
Set pAccessMiddle = Nothing
Exit Function
ErrHandler:
m_oErrors.Add
m_oErrors. Add Err.Number, "GetCatalogResourceManager",
"GetCatalogResourceManager", Err.Description
Err.Raise E_FAIL
End Function
24. Go to the Subroutine Terminate method and add one line to remove the reference from object
variable m_oCodeListMetadata.
25. Compile the Visual Basic project and save the dll as pipeline.dll in the c:\train\lab1
26. Save and Exit the program.
27. Open the TemplateNamingRules.xls under C:\train\CustomNameRule\Templates
28. Add the name of the class object and the ProgID as follows:
50
29. Save the Excel sheet as TrainingNameRules.xls under c:\train and exit Excel.
30. Run Bulkload Utility (START Menu -> In Intergraph
tergraph SmartPlant 3D -> Database Tools ->
Bulkload Reference Data)
31. Set the bulkload to A/M/D mode.
32. Select Load button to add the new naming rule into the training catalog.
33. Go to SP3D System & Specification Task and create a new pipeline system to test your
naming rule. Select and Key in the following data in the New Pipeline dialog box.
51
52
This session will demonstrate an implementation of a naming rule for piperun objects. This
component will generate a name for piperun objects as shown here:
PipeRun object:
Pipe Runs:
NPD + NPD Units + Spec Name + Parent System
53
c:\train\CustomNameRule\lab2
5. Navigate to c:\train\CustomNameRule\Template and open the Naming Rule Template project
provided by the instructor.
54
7. Go to the Visual Basic Explorer Window and select the Project node. Select File -> Save
Project As option to save the project as PipeRun.vbp under the lab2 directory.
8. Go to the Visual Basic Explorer Window and select the TemplateName class node. Select
File -> Save TemplateName.cls As option to save the class module as CPipeRun.cls under
lab2 directory.
55
9. Go to the Properties Window and change the name of the Project and ClassModule as
follows:
10. Go to the General Declarations section and change the value of the Constant Module variable
from “TemplateNamingRules:” to “PipeRun:”
11. Access the subroutine GetNamingParents section by selecting IJNameRule in the Object List
Box and select the GetNamingParents in the Procedure List Box. Add code snippet to the
body of the subroutine GetNamingParents. The lines should get all the parent objects that
need to participate in the object naming. Add of the parent objects to the 'IJElements
collection.
Hints:
56
Set IJNameRule_GetNamingParents
IJNameRule_GetNamingParents = Nothing
Create the collection and declare an object variable to hold a reference to the IJSystemChild.
Set IJNameRule_Ge
IJNameRule_GetNamingParents
tNamingParents = New IMSCoreCollections.JObjec
IMSCoreCollections.JObjectCollection
tCollection
Add the parent object into the collection using the method Add as shown here:
Set IJNameRu
IJNameRule_GetNamingPar
le_GetNamingParents
ents = New IMSCoreCollections.JObjectCollection
IMSCoreCollections.JObjectCollection
Dim oSysChild
oSysChild As IJSyst
IJSystemChild
emChild
Set oSysChild = oEntity
Dim oSysParent
oSysParent As IJSystem
Set oSysParent = oSysChild.GetP
oSysChild.GetParent
arent
If Not (oSysParent
(oSysParent Is Nothing)
Nothing) Then
Call IJNameRule_Ge
IJNameRule_GetNamingParents
tNamingParents.Add(oSysPar
.Add(oSysParent)
ent)
End If
12. Access the subroutine ComputeName section by selecting IJNameRule in the Object List
Box and select the ComputeName in the Procedure List Box.
13. Add code snippet to the body of the subroutine ComputeName. The lines should contain
statements for formatting the object name. The object name consists of Parent System Name,
NPD, NPD Unit and Piping Specification Name. For example,
57
Dim oChildNamedItem
oChildNamedItem As IIJNamedItem
JNamedItem
Dim strChildName
strChildName As Str
String
ing
Set oChildNamedItem = oObject
strChildName = vbNullString
Dim oAttributes
oAttributes As IIJDAttributes
JDAttributes
Set oAttributes = oObject
16. Declare variables strNPD and strNPDUnits to store the NPD of the PipeRun.
Dim strNPD
strNPD As String
Dim strNPDUnitType
strNPDUnitType As String
17. Use the attribute service to get the NPD and NPD Unit as follows:
strNPD = CStr(oAttributes.CollectionOfAttributes("IJRtePipeRun").Item("NPD").Value)
strNPDUnitType = oAttributes.CollectionOfAttributes("IJRtePipeRun").Item("NPDUnitType").Value
If strNPDUnitType
strNPDUnitType = "in"
"in" Then
strNPDUnitType = Chr(34)
End If
Dim oRelationHelper
oRelationHelper As IMSRelation.DRelationHelper
IMSRelation.DRelationHelper
Dim oCollection
oCollection As IM
IMSRelation.DC
SRelation.DCollectionHelper
ollectionHelper
Set oRelationHelper = oObject
Dim oSpec As IJDSpec
Dim strSpecName
strSpecName As Str
String
ing
Set oCollection = oRelationHe
oRelationHelper.Collection
lper.CollectionRelations("
Relations("IJRtePathRun",
IJRtePathRun", "Spec")
Set oSpec = oCollection.Item(1)
strSpecName = oSpec.SpecName
Dim oParentNamedItem
oParentNamedItem As IJNamedI
IJNamedItem
tem
Dim strParentName
strParentName As String
String
strParentName = vbNullString
Set oParentNamedItem = elements.Item(1)
strParentName = oParentNamedItem.Name
strChildName = strNPD & strNPDUnitType & "-" & strSpecName & "-" & strParentName
58
oChildNamedItem.Name = strChildName
22. Compile the Visual Basic project and save the dll as PipeRun.dll in the c:\train\lab2
23. Save and Exit the program.
Note: You need to reference additional libraries using the SP3D Reference Tool. For
example,
59
60
61
This session will demonstrate an implementation of a naming rule for the Member Part objects.
This component will generate a name for Member Part objects as shown here:
The Short Description of the Member Category Code List + Section Name + Location +
IndexCounter
62
c:\train\CustomNameRule\lab3
7. Go to the Visual Basic Explorer Window and select the Project node. Select File -> Save
Project As option to save the project as MemberPart.vbp under the lab3 directory.
8. Go to the Visual Basic Explorer Window and select the TemplateName class node. Select
File -> Save TemplateName.cls As option to save the class module as CMemberPart.cls
under lab3 directory.
9. Go to the Properties Window and change the name of the Project and ClassModule as
follows:
64
10. Go to the General Declarations section and change the value of the Constant Module variable
from “TemplateNamingRules:” to “MemberPart:”
11. Use the SP3D Reference tool to reference the following libraries or use the Project
>References command. Go to Project -> References option to open the References dialog
box. Select the Browser button
button and pick the following libraries:
Browser
Ingr SPSMembers
SPSMembers Entities
Entities 1.0 Type Library
[Install Product]\SmartPlantStructure\Middle\Bin\SPSMembers.dll
Ingr SmartPlant3D
SmartPlant3D Relation
Relation 1.0 Type
Type Library
Library
[Install Product]\Core\Middle\Bin\IMSRelation.dll
12. Insert into your existing project the following Private Functions. Open the GetCatalog.txt file
and GetModel.txt located in the template directory file and use Cut/Paste operation to insert
the code snippet. The inserted code snippet should look like this:
'------------------------------------------
'---------------------------------------------------------
-------------------------
---------------------------
---------------------
----
'Description
' Function returns the CatalogResourceManag
CatalogResourceManager er
'--------------------------
'------------------------------------------
-------------------------------
-------------------------
---------------------------
---------------------
----
Private Function GetCatalogResourceManager() As IUnknown
Const METHOD = "GetCatalogResourceManager"
On Error GoTo ErrHandler
Dim oDBTypeConfig
oDBTypeConfig As IJDBTypeCo
IJDBTypeConfiguration
nfiguration
65
Dim pConnMiddle
pConnMiddle As IJDConnectMiddle
IJDConnectMiddle
Dim pAccessMiddle
pAccessMiddle As IJDAccessMiddl
IJDAccessMiddlee
Dim jContext
jContext As IJCont
IJContext
ext
Set jContext = GetJContext()
Set oDBTypeCon
oDBTypeConfigfig = jContext.GetSer
jContext.GetService("DBTypeC
vice("DBTypeConfiguration")
onfiguration")
Set pConnMiddle = jContext.G
jContext.GetService("ConnectMid
etService("ConnectMiddle")
dle")
Set pAccessMiddle = pConnMiddle
Dim strCatlogDB
strCatlogDB As Str
String
ing
strCatlogDB = oDBTypeConfig.g
oDBTypeConfig.get_DataBaseFr
et_DataBaseFromDBType("
omDBType("Catalog")
Catalog")
Set GetCatalogR
GetCatalogResourceManager
esourceManager = pAccessMiddle.GetResourceManager(
pAccessMiddle.GetResourceManager(strCatlogDB)
strCatlogDB)
Set jContext = Nothing
Set oDBTypeConfig = Nothing
Set pConnMiddle = Nothing
Set pAccessMiddle = Nothing
Exit Function
ErrHandler:
m_oErrors.Add
m_oErrors. Add Err.Number, "GetCatalogResourceManager",
"GetCatalogResourceManager", Err.Description
Err.Raise E_FAIL
End Function
'------------------------------------------
'---------------------------------------------------------
-------------------------
---------------------------
---------------------
----
'Description
' Function returns the ModelResource Manager
'--------------------------
'------------------------------------------
-------------------------------
-------------------------
---------------------------
---------------------
----
Private Function GetModelR
GetModelResourceManager()
esourceManager() As IUnknown
Const METHOD = "GetModelResourceManager"
On Error GoTo ErrHandler
Dim jContext
jContext As IJCont
IJContext
ext
Dim oDBTypeConfig
oDBTypeConfig As IJDBTypeCo
IJDBTypeConfiguration
nfiguration
Dim oConnectMiddle
oConnectMiddle As IIJDAccessMiddle
JDAccessMiddle
Dim strModelDBID
strModelDBID As String
Set jContext = GetJContext()
Set oDBTypeCon
oDBTypeConfigfig = jContext.GetSer
jContext.GetService("DBTypeC
vice("DBTypeConfiguration")
onfiguration")
Set oConnectMiddle = jContext.GetSer
jContext.GetService("ConnectMidd
vice("ConnectMiddle")
le")
strModelDBID = oDBTypeConfig.get_DataBaseFromDBType("Model")
Set GetModelR
GetModelResourceManager
esourceManager = oConnectMiddle.GetRes
oConnectMiddle.GetResourceManager(strModelDBID
ourceManager(strModelDBID))
13. Go to the General Declarations section and declare object variables to hold the reference to
the IJDCodeListMetaData and IUnknown interfaces.
14. Access the subroutine ComputeName section by selecting IJNameRule in the Object List
Box and select the ComputeName in the Procedure List Box.
15. Add code snippet to the body of the subroutine ComputeName. The code snippet should
contain statements for formatting the object name. The object name consists of a string to
indicate the member category, a unique index counter and the section name. For example,
Short Description Member Category Code List + Section Name + Location + IndexCounter
Hint:
Declare an object variable to hold a reference to the IJNamedItem
Dim oChildNamedItem
oChildNamedItem As IJNamedItem
IJNamedItem
Set oChildNamedItem = oObject
Dim oAttributes
oAttributes As IJDAttr
IJDAttributes
ibutes
Set oAttributes = oObject
Use the attribute service to get MemberTypeID. The resulting line should look like this:
MemberTypeID = oAttributes.Co
oAttributes.CollectionOfAt
llectionOfAttributes("ISP
tributes("ISPSMemberType").Item(
SMemberType").Item("TypeCategory").Value
"TypeCategory").Value
Declare variables to store the codelist table name and short description of the Member Type.
Dim strTableName
strTableName As String
Dim strMemType
strMemType As String
strTableName = "StructuralMemberTypeCategory"
"StructuralMemberTypeCategory"
Add lines to get the member type short description and set the result to upper case. The
resulting lines should look like this:
If m_oCodeListMetadata
m_oCodeListMetadata Is Noth
Nothing
ing Then
Set m_oCodeLis
m_oCodeListMetadata
tMetadata = GetCatalogR
GetCatalogResourceManager
esourceManager
End If
strMemType = UCase(m_oCodeListMetadata.S
UCase(m_oCodeListMetadata.ShortStringValue(
hortStringValue(strTableName MemberTypeID)))
strTableName,, MemberTypeID)
Use the relation service to get the name of the cross section.
Declare object variables to hold a reference to the DRelationHelper and DCollectionHelper.
Declare an object variable to hold a reference to the IJCrossSection. Declare a variable
strSectionName to store the Cross Section Name.
The resulting lines should look like this:
67
Dim oRelationHelper
oRelationHelper As IMSRelation.D
IMSRelation.DRelationHelper
RelationHelper
Dim oCollection
oCollection As IMSR
IMSRelation.DColl
elation.DCollectionHelper
ectionHelper
Set oRelationHelper = oObject
Dim oMembCrossSection
oMembCrossSection As IJCrossSectio
IJCrossSectionn
Dim strSectionName
strSectionName As String
Set oMembCrossSection = oCollection.Item(1)
Set oAttributes = oCollection.Item(1)
strSectionNamee = oAttributes.Co
strSectionNam oAttributes.CollectionOfAttr
llectionOfAttributes("I
ibutes("IStructCrossSection")
StructCrossSection").Item("SectionName"
.Item("SectionName").Value
).Value
Dim strChildName
strChildName As Str
String
ing
strChildName = strMemType
strChildName = strChildName + "-" + strSectionName
Use the Name Generator Service to generate a counter based on the Member Type Category.
Store the formatted name in oChildNamedItem.Name. Declare an object variable to hold a
reference to the IJNameCounter.
Dim oNameCounter
oNameCounter As IJNameC
IJNameCounter
ounter
Set oNameCounter = New GSCADNameGenerator.
GSCADNameGenerator.NameGeneratorService
NameGeneratorService
Dim strLocation
strLocation As String
strLocation = vbNullString
nCount = oNameCounter.GetCountEx(
oNameCounter.GetCountEx(m_oModelResour
m_oModelResourceMgr,
ceMgr, strChildNam
strChildName,
e, strLocation)
If Not (strLocation
(strLocation = vbNullString)
vbNullString) Then
strChildName = strChildName + "-" + strLocation + "-" + CStr(nCount)
Else
strChildName = strChildName + "-" + CStr(nCount)
End If
oChildNamedItem.Name = strChildName
17. Compile the Visual Basic project and save the dll as MemberPart.dll in the c:\train\lab3
18. Save and Exit the program.
19. Open c:\train\TrainingNameRules.xls.
20. Add the name of the class object and the ProgID as follows:
70
Create Piping Component symbols using the SmartPlant 3D Part Definition Wizard
Skip the following lines (1-2) if the symbol wizard is installed on your machine.
c:\train\SP3DFWN
c:\train\IngrModules
6. Go to the Add-Ins Option and Select SmartPlant 3D Part Definition Wizard.
71
7. The Next step is to create the weld neck flange component symbol definition template using
SP3D Part Definition Symbol Wizard.
8. In this page you define the Visual Basic project name. Key in the following information:
9. Select Next button to go the next page. This page is to define any properties that are constant
for all occurrences of the piping part. Key in the following data:
10. Select Next button to go the next page. This page defines all occurrence properties of the
piping part. Select Next button to go the next page. This page identifies all the outputs of the
73
piping part. We are going to define three outputs: body and two piping nozzle for our
weldneck flange. The Body output is in the Simple Physical aspect.
11. Press Next button and Finish button to create the SP3DFWN project template. The Visual
Basic project consists of the following modules:
m_oSymbolHelper.ProjectName = "SP3DFWN"
m_oSymbolHelper.ClassName = "CSP3DFWN"
' Inputs
m_oSymbolHelper.NumInputs
m_oSymbolHelper.NumInputs = 1
m_oSymbolHelper.AddInputDe
m_oSymbolHelper.AddInputDeff 1, "FacetoFace", "FacetoF
"FacetoFace",
ace", 2
' Outputs
m_oSymbolHelper.NumOutputs = 3
m_oSymbolHelper.AddOutputD
m_oSymbolHelper.AddOutputDef
ef 1, "Body1", "Body1", 1
m_oSymbolHelper.AddOutputD
m_oSymbolHelper.AddOutputDef
ef 2, "PipingNoz1", "Nozzle 1", 1
m_oSymbolHelper.AddOutputD
m_oSymbolHelper.AddOutputDef
ef 3, "PipingNoz2", "Nozzle 2", 1
' Aspects
m_oSymbolHelper.NumAspects = 1
m_oSymbolHelper.AddAspec
m_oSymbolHelper.AddAspectDef
tDef 1, "SimplePhysi
"SimplePhysical",
cal", "SimplePhysica
"SimplePhysical",
l", 1
Exit Sub
Errx:
Err.Raise Err.Number, Err.Source
Err.Source & " " & METHOD, Er
Err.Description,
r.Description, _
Err.HelpFile,
Err.HelpFile, Err.HelpC
Err.HelpContext
ontext
End Sub
14. Go to CSimplePhysical Class module and add your code snippet to create the outputs:
15. Go to the “ Insert your output (Body1)” section. The following code snippet will use
your code for output
the m_oGeomHelper.CreateCone() routine to create a Cone for the Body. In addition, this
code snippet uses the RetrieveParameters function to retrieve the nozzle information from the
generic data.
RetrieveParameters
RetrieveParameters 1, oPartF
oPartFclt,
clt, m_Outpu
m_OutputColl,
tColl, pipeD
pipeDiam,
iam, flangeThick,
flangeThick, flangeDiam, cptOffset, depth
Dim stPosition
stPosition As IJDPosit
IJDPosition
ion
Dim enPosition
enPosition As IJDPosi
IJDPosition
tion
iOutput = iOutput + 1
Set ObjBody1 = m_oGeomHelper
m_oGeomHelper.CreateCone(
.CreateCone(arrayOfOutputs(iOutpu
arrayOfOutputs(iOutput),
t), stPosition, enPosition, pipeDiam
+ flangeDiam / 4, pipeDiam )
Use the Set statement to remove references from all object variables.
16. Compile the Visual Basic project and save the dll in the c:\train \SP3DFWN
\SP3DFWN
75
23. Add a new entry in the piping commodity material control data sheet.
76
Create Piping Instrument symbols using the SmartPlant 3D Part Definition Wizard
c:\train\GenericComp
c:\train\IngrModules
4. Go to the Add-Ins Option and Select SmartPlant 3D Part Definition Wizard.
5. The Next step is to create the generic component symbol definition template using SP3D Part
Definition Symbol Wizard.
78
6. In this page you define the Visual Basic project name. Key in the following information:
7. Select Next button to go the next page. This page is to define any properties that are constant
for all occurrences of the piping part. Key in the following data:
79
8. Select Next button to go the next page. This page defines all occurrence properties of the
piping part. Select Next button to go the next page. This page identifies all the outputs of the
piping part. We are going to define three outputs: body and two piping nozzles for our
GenericComp. The Body output is in the Simple Physical aspect.
80
9. Press Next button and Finish button to create the GenericComp project template. The Visual
Basic project consists of the following modules:
' Inputs
m_oSymbolHelper.NumInputs
m_oSymbolHelper.NumInputs = 2
m_oSymbolHelper.AddInputDe
m_oSymbolHelper.AddInputDeff 1, "FacetoFace", "FacetoF
"FacetoFace",
ace", 3
m_oSymbolHelper
m_oSymbolHelper.AddInpu
.AddInputDef
tDef 2, ""B",
B", "M
"MajorBod
ajorBodyDiameter"
yDiameter",, 4
' Outputs
m_oSymbolHelper.NumOutputs = 3
m_oSymbolHelper.AddOutputD
m_oSymbolHelper.AddOutputDef
ef 1, "FABody", "FABody", 1
m_oSymbolHelper.AddOutputD
m_oSymbolHelper.AddOutputDef
ef 2, "PipingNoz1", "Nozzle 1", 1
m_oSymbolHelper.AddOutputD
m_oSymbolHelper.AddOutputDef
ef 3, "PipingNoz2", "Nozzle 2", 1
' Aspects
m_oSymbolHelper.NumAspects = 1
m_oSymbolHelper.AddAspec
m_oSymbolHelper.AddAspectDef
tDef 1, "SimplePhysi
"SimplePhysical",
cal", "SimplePhysica
"SimplePhysical",
l", 1
Exit Sub
Errx:
Err.Raise Err.Number, Err.Source
Err.Source & " " & METHOD, Er
Err.Description,
r.Description, _
Err.HelpFile,
Err.HelpFile, Err.HelpC
Err.HelpContext
ontext
End Sub
13. Go to CSimplePhysical Class module and add your code snippet to create the outputs:
14. Go to the “ Insert your
your code for output Body)” section. The following code snippet will
output (FA Body)”
use the m_oGeomHelper.CreateCylinder() routine to create a Cylinder for the Body. The
PlaceCylinder routine is defined in the geometry helper service. This function creates
persistent projection of a circle based on two points and diameter.
81
In addition, this code snippet uses the RetrieveParameters function to retrieve the nozzle
information from the generic data.
RetrieveParameters 1, oPartF
RetrieveParameters oPartFclt,
clt, m_Outpu
m_OutputColl,
tColl, pipeD
pipeDiam,
iam, flangeThick,
flangeThick, flangeDiam, cptOffset, depth
Dim stPoint
stPoint As IJDPosi
IJDPosition
tion
Dim enPoint
enPoint As IJDPosit
IJDPosition
ion
Set stPoint = New DPosition
Set enPoint = New DPosition
stPoint.Set -parFacetoFace / 2 + flangeThick, 0, 0
enPoint.Set parFacetoFace
parFacetoFace / 2 - flangeThick, 0, 0
Use the Set statement to remove references from all object variables.
15. Compile the Visual Basic project and save the dll in the c:\train \GenericComp
\GenericComp
16. Save the Visual Basic GenericComp project.
17. Open the [Install Product]\ CatalogData\BulkLoad\Datafiles\Instrument Data.xls. Make sure
to remove the Read-Only setting on the file.
18. Create a New Part Class called GenericComp with the following data:
Hint: Use the ANG sheet as a template
Note: Creating the bmp file is optional. You can use Microsoft Paint to create the file and
your \\machine\sym
save it under your \\machine\symbols\Sym
bols\SymbolIcons
bolIcons
20. Save the file in c:\train\GenericComp\ Instrument Data.xls. Load the information into the
Catalog using the Append mode. Once the bulkload process is completed, run the View
Generator utility on the model to re-create the views in the model database. Finally, Re-
generate the report databases.
21. Go to the Piping Task and place the Generic Component.
84
c:\train\ SP3DOP431
4. Go to the Add-Ins Option and Select SmartPlant 3D Part Definition Wizard.
5. The Next step is to create the operator symbol definition template using SP3D Part Definition
Symbol Wizard.
85
6. In this page you define the Visual Basic project name. Key in the following information:
7. Select Next button to go the next page. This page is to define any properties that are constant
for all occurrences of the operator part. Key in the following data:
8. Select Next button to go the next page. This page defines all occurrence properties of the
operator part. Select Next button to go the next page. This page identifies all the outputs of
the operator part. We are going to define one output: Operator Body
9. Press Next button and Finish button to create the Operator project template. The Visual Basic
project consists of the following modules:
m_oSymbolHelper.ClassName = "CSP3DOP431"
' Inputs
m_oSymbolHelper.NumInputs
m_oSymbolHelper.NumInputs = 2
m_oSymbolHelper.AddInputDe
m_oSymbolHelper.AddInputDeff 1, "OperatorHeight", "OperatorHe
"OperatorHeight",
ight", 1
m_oSymbolHelper.AddInputDe
m_oSymbolHelper.AddInputDeff 2, "OperatorDiameter",
"OperatorDiameter", "OperatorDiam
"OperatorDiameter",
eter", 0.5
' m_oSymb
Outputs olHelper.NumOutputs
m_oSymbolHelper.NumOutputs = 3
m_oSymbolHelper.AddOutpu
m_oSymbolHelper.AddOutputDef
tDef 1, "O
"OPBody1",
PBody1", "OPBo
"OPBody1",
dy1", 1
m_oSymbolHelper
m_oSymbolHelper.AddOutpu
.AddOutputDef
tDef 2, "O
"OPBody2",
PBody2", "OPBo
"OPBody2",
dy2", 1
m_oSymbolHelper
m_oSymbolHelper.AddOutpu
.AddOutputDef
tDef 3, "O
"OPBody3",
PBody3", "OPBo
"OPBody3",
dy3", 1
' Aspects
m_oSymbolHelper.NumAspects = 1
m_oSymbolHelper.AddAspec
m_oSymbolHelper.AddAspectDef
tDef 1, "SimplePhysi
"SimplePhysical",
cal", "SimplePhysica
"SimplePhysical",
l", 1
Exit Sub
Errx:
Err.Raise Err.Number, Err.Source
Err.Source & " " & METHOD, Er
Err.Description,
r.Description, _
Err.HelpFile,
Err.HelpFile, Err.HelpC
Err.HelpContext
ontext
End Sub
12. Go to CSimplePhysical Class module and add your code snippet to create the outputs:
13. Go to the “ Insert your
your code for output (OPBody)” section. The following code snippet will
output 1 (OPBody)
use the m_oGeomHelper.CreateCone() routine to create a Cone for the Body. The PlaceCone
routine is defined in the geometry helper service. This function creates a persistent object
based on two points and two diameters.
ConeCenterTopPt.Set 0, parOperatorHe
ConeCenterTopPt.Set parOperatorHeight,
ight, 0
ConeCenterBasePt.Set
ConeCenterBasePt.Set 0, 0, 0.0000001
Dim ObjOPBody
ObjOPBody As IngrGeom3D.Cone3d
IngrGeom3D.Cone3d
iOutput = iOutput + 1
14. The following code snippet will use the Geometry factory functions to create a dome for the
top of the operator.
Dim oGeomFactory
oGeomFactory As New IngrGeom3D.GeometryFac
IngrGeom3D.GeometryFactory
tory
89
Dim oEllipticalArc
oEllipticalArc As IngrGeom3D.
IngrGeom3D.EllipticalArc3d
EllipticalArc3d
Dim oRevolution
oRevolution As Ingr
IngrGeom3D.Revolu
Geom3D.Revolution3d
tion3d
Dim PI As Double
Dim dRadius
dRadius As Double
‘Center: 0,opdiameter/2,0
'Normal: 0,0,1
'MajorAxis
'MajorAxis: (North)
: 0,radius,0
'Ratio: 1
‘Start angle: 270
'Sweep angle 90
PI = 4 * Atn(1)
dRadius = parOperatorDiameter
parOperatorDiameter / 2
Set oEllipticalArc = oGeomFactory.EllipticalArcs3d.CreateByCenterNormalMajAxisRatioAngle(Nothing, _
0, parOperatorHeight, 0, 0, 0, 1, 0, dRadius, 0, _
1, PI * 1.5, PI / 2)
iOutput = iOutput + 1
m_OutputColl.AddOutput
m_OutputCo ll.AddOutput arrayOfOu
arrayOfOutputs(iOutput)
tputs(iOutput),, oRevolution
Dim oCircle
oCircle As IngrGeom3D.Circle3d
IngrGeom3D.Circle3d
Set oCircle = oGeomFactor
oGeomFactory.Circles3d.Cr
y.Circles3d.CreateByCenterN
eateByCenterNormalRadius(m
ormalRadius(m_OutputColl.Resour
_OutputColl.ResourceManager,
ceManager, _
0, parOperatorHeight, 0, 0, 1, 0, dRadius)
iOutput = iOutput + 1
m_OutputColl.AddOutput
m_OutputCo ll.AddOutput arrayOfOu
arrayOfOutputs(iOutput)
tputs(iOutput),, oCircle
15. Compile the Visual Basic project and save the dll in the c:\Train\ SP3DOP431
SP3DOP431
16. Save the Visual Basic SP3DOP431 project.
19. Go to the InstrumentClassData sheet and add the following data to F001 instrument.
Remember to add the letter M.
' Outputs
m_oSymbolHelper.NumOutputs = 4
m_oSymbolHelper.AddOutputD
m_oSymbolHelper.AddOutputDef
ef 1, "FABody", "FABody", 1
m_oSymbolHelper.AddOutputD
m_oSymbolHelper.AddOutputDef
ef 2, "PipingNoz1", "Nozzle 1", 1
m_oSymbolHelper.AddOutputD
m_oSymbolHelper.AddOutputDef
ef 3, "PipingNoz2", "Nozzle 2", 1
m_oSymbolHelper
m_oSymbolHelper.AddOutpu
.AddOutputDef
tDef 4, "V
"ValveOpera
alveOperator",
tor", "
"ValveOpera
ValveOperator",
tor", 1
23. Go to CSimplePhysical Class module and add your code snippet to reference the operator
symbol:
Dim oSymbolHelper
oSymbolHelper As IJS
IJSymbolGeometryH
ymbolGeometryHelper
elper
Set oSymbolHelper = New SP3DSymbolHelper.SymbolServices
oSymbolHelper.OutputCollection
oSymbolHelper.Outp utCollection = m_OutputColl
oDirX.Set 1, 0, 0
oDirY.Set 0, 1, 0
92
oDirZ.Set 0, 0, 1
Dim oPipeComponent
oPipeComponent As IJDPipeCompon
IJDPipeComponent
ent
Set oPipeComponent = oPartFclt
On Error GoTo ErrorLabel
Dim oOperatorPart
oOperatorPart As IIJDPart
JDPart
Dim oOperatorOcc
oOperatorOcc As IJPartOcc
End If
End If
Set oSymbolHelper = Nothing
Set oOperatorPart = Nothing
Set oPipeComponent = Nothing
Set oOperatorOcc = Nothing
24. Open the properties page of the Visual Basic project and increase the dll version number.
25. Compile the Visual Basic project and save the dll in the c:\Train\ GenericComp
GenericComp
26. Save the Visual Basic GenericComp project.
27. Load the information into the Catalog using the Add/Edit/Modify mode. Once the bulkload
process is complete.
28. Go to Project Management task and run the synchronize model with the catalog database
command. Finally, Re-generate the report databases.
29. Go to the Piping Task and place the Generic Component. Notice the system displays the
operator.
93
94
Modify the instrument symbol (GenericComp) by adding another cylinder shape to represent
a reserved space for operations.
1. Open the GenericComp.vb program and add/edit the following entries in the output section:
' Outputs
m_oSymbolHelper
m_oSymbolHelper.NumOutputs
.NumOutputs = 5
m_oSymbolHelper.AddOutputD
m_oSymbolHelper.AddOutputDef
ef 1, "FABody", "FABody", 1
m_oSymbolHelper.AddOutputD
m_oSymbolHelper.AddOutputDef
ef 2, "PipingNoz1", "Nozzle 1", 1
m_oSymbolHelper.AddOutputD
m_oSymbolHelper.AddOutputDef
ef 3, "PipingNoz2", "Nozzle 2", 1
m_oSymbolHelper.AddOutputD
m_oSymbolHelper.AddOutputDef
ef 4, "ValveOperator"
"ValveOperator",, "ValveOperator", 1
"ValveOperator",
m_oSymbolHelper.AddOutputD
m_oSymbolHelper.AddOutputDef
ef 5, "Shape1", "Shape1", 64
' Aspects
m_oSymbolHelper.NumAspects = 2
m_oSymbolHelper.AddAspec
m_oSymbolHelper.AddAspectDef
tDef 1, "SimplePhysi
"SimplePhysical",
cal", "SimplePhysica
"SimplePhysical",
l", 1
m_oSymbolHelper.AddAspec
m_oSymbolHelper.AddAspectDef
tDef 2, "Operation", "Operation", 64
Option Explicit
Private Const MODULE = "CGenericComp" 'Used for error messages
Private m_oGeomHelper As IJSymbolGeometryHelper
Private Const E_FAIL = &H80004005
Private Sub
S ub Class_Initialize()
Const METHOD = "Class_Initialize"
On Error GoTo Errx
Set m_oGeomHelper = New SymbolServices
Exit Sub
Errx:
Err.Raise Err.Number, Err.Source
Err.Source & " " & METHO
METHOD,
D, Err.Descrip
Err.Description,
tion, _
Err.HelpFile,
Err.HelpFile, Err.H
Err.HelpContext
elpContext
End Sub
Use the PlaceCylinder() routine to create a cylinder for the shape. The PlaceCylinder routine
is defined in the geometry helper service. This function creates a persistent projection of a
circle based on two points and diameter.
96
Dim oPartFclt
oPartFclt As PartFac
PartFacelets.IJDPart
elets.IJDPart
Dim pipeDiam
pipeDiam As Double
Dim flangeThick
flangeThick As Double
Dim cptOffset
cptOffset As Double
Dim flangeDiam
flangeDiam As Double
Dim depth
depth As Double
Dim iOutput
iOutput As Double
Dim ObjFABody
ObjFABody As Object
Dim parFacetoFace
parFacetoFace As Double
Double
Dim parMajorBodyDiameter
parMajorBodyDiameter As Double
' Inputs
Set oPartFclt = arrayOfInputs(1)
parFacetoFace = arrayOfInputs(2)
parMajorBodyDiameter
parMajorBodyDiam eter = arrayOfInputs(3)
arrayOfInputs(3)
m_oGeomHelper.OutputCollection = m_OutputColl
iOutput = 0
' Insert your code for output (Shape1)
RetrieveParameters
RetrieveParameters 1, oPartF
oPartFclt,
clt, m_Outpu
m_OutputColl,
tColl, pipeD
pipeDiam,
iam, flangeThick,
flangeThick, flangeDiam, cptOffset, depth
97
Dim stPoint
stPoint As IJDPosi
IJDPosition
tion
Dim enPoint
enPoint As IJDPosit
IJDPosition
ion
Set stPoint = New DPosition
Set enPoint = New DPosition
stPoint.Set 0, - parMajorBodyDiameter / 2, 0
enPoint.Set 0, - parMajorBodyDiameter / 2 - 2 * parMajorBodyDiame
parMajorBodyDiameter,
ter, 0
iOutput = iOutput + 1
Set ObjFABo
ObjFABodydy = m_oGeomHelper
m_oGeomHelper.CreateCylinder(
.CreateCylinder(arrayOfOutputs(
arrayOfOutputs(iOutput),
iOutput), stPoint, enPoint,
parMajorBodyDiameter
parMajorBodyDiame ter / 2)
Set stPoint = Nothing
Set enPoint = Nothing
Set ObjFABody = Nothing
Exit Sub
ErrorLabel:
Err.Raise Err.Number, Err.Source
Err.Source & " " & METHOD, Er
Err.Description,
r.Description, _
Err.HelpFile,
Err.HelpFile, Err.HelpC
Err.HelpContext
ontext
Resume Next
End Sub
4. Open the properties page of the Visual Basic project and increase the dll version number.
5. Compile the Visual Basic project and save the dll in the c:\Train\ GenericComp
GenericComp
6. Save the Visual Basic GenericComp project.
7. Go to the instrument part class and add the letter M to the part class definition and part.
8. Update the part class instrument using the bulkload utility.
9. Go to Project Management task and run the synchronize model with the catalog database
command.
10. Go to the Piping Task and place the Generic Component. Turn on the Operation Aspect and
notice the system displays the new shape.
98
Create cabletray component symbols using the SmartPlant 3D Part Definition Wizard
c:\train\SP3D90VTrayOutside
4. Go to the Add-Ins Option and Select SmartPlant 3D Part Definition Wizard.
5. The Next step is to create the 90 deg vertical outside cabletray symbol definition template
using SP3D Part Definition Symbol Wizard.
99
6. In this page you define the Visual Basic project name. Key in the following information:
7. Select Next button to go the next page. This page is to define any properties that are constant
for all occurrences of the cabletray part. Key in the following:
8. Select Next button to go the next page. This page defines all occurrence properties of the
cabletray part. Select Next button to go the next page. This page identifies all the outputs of
101
the tray part. We are going to define 1 output. The Body output is in the Simple Physical
aspect.
9. Press Next button and Finish button to create the SP3D90VTrayOutside project template. The
Visual Basic project consists of the following modules:
Private
ConstSub Class_Initialize()
METHOD = "Class_Initialize:"
On Error GoTo Errx
102
' Inputs
m_oSymbolHe
m_oSymbolHelper.NumInputs
lper.NumInputs
m_oSymbolHelper.AddInputDe
m_oSymbolHe =f 1,
lper.AddInputDef 1 "FrameRadius", "FrameRadius"
"FrameRadius",, 0.03
' Outputs
m_oSymbolHelper.NumOutputs = 8
m_oSymbolHelper.AddOutputD
m_oSymbolHelper.AddOutputDef
ef 1, "Body1", "Body1", 1
m_oSymbolHelper.AddOutputD
m_oSymbolHelper.AddOutputDef
ef 2, "Body2", "Body2", 1
m_oSymbolHelper.AddOutputD
m_oSymbolHelper.AddOutputDef
ef 3, "Body3", "Body3", 1
m_oSymbolHelper.AddOutputD
m_oSymbolHelper.AddOutputDef
ef 4, "Body4", "Body4", 1
m_oSymbolHelper.AddOutputD
m_oSymbolHelper.AddOutputDef
ef 5, "Body5", "Body5", 1
m_oSymbolHelper.AddOutputD
m_oSymbolHelper.AddOutputDef
ef 6, "Body6", "Body6", 1
m_oSymbolHelper.AddOutputD
m_oSymbolHelper.AddOutputDef
ef 7, "port1", "port1", 1
m_oSymbolHelper.AddOutputD
m_oSymbolHelper.AddOutputDef
ef 8, "port2", "port2", 1
' Aspects
m_oSymbolHelper.NumAspects = 1
m_oSymbolHelper.AddAspec
m_oSymbolHelper.AddAspectDef
tDef 1, "SimplePhysi
"SimplePhysical",
cal", "SimplePhysica
"SimplePhysical",
l", 1
Exit Sub
Errx:
Err.Raise Err.Number, Err.Source
Err.Source & " " & METHOD, Er
Err.Description,
r.Description, _
Err.HelpFile,
Err.HelpFile, Err.HelpC
Err.HelpContext
ontext
End Sub
12. Go to CSimplePhysical Class module and declare all variables for your inputs and outputs
Dim parActualWidth
parActualWidth As Double
Double
Dim parActualDepth
parActualDepth As Double
Double
Dim parBendRadius
parBendRadius As Double
Double
Dim oPort1 As New AutoMath.DPosition
Dim oPort2 As New AutoMath.DPosition
13. Go to CSimplePhysical Class module and add your code snippet to create the outputs:
14. Go to the “ Insert your output (Body1)” section. Use the
your code for output
RetrieveCableTrayPortProperties function to retrieve the port information from the part.
Dim oTrayPart
oTrayPart As IJCab
IJCableTrayPart
leTrayPart
Set oTrayPart = oPartFclt
parBendRadius = oTrayPart.Ben
oTrayPart.BendRadius
dRadius
Dim LineStrPoints(0
LineStrPoints(0 T
To
o 11) As Double
Dim Angle
Angle As Double
103
Dim ProjVector
ProjVector As New AutoMath.DVector
AutoMath.DVector
Dim oLineString
oLineString As IngrGeom3D.LineString
IngrGeom3D.LineString3d
3d
Dim geomFactory
geomFactory As IngrGeom3D.G
IngrGeom3D.GeometryFactory
eometryFactory
Set geomFactory = New IngrGeom3D.GeometryFactory
Angle = 2 * Atn(1)
Atn(1)
HalfDepth = parActualDepth / 2
HalfWidth
HalfWid th = parActualW
parActualWidth
idth / 2
oPort1.Set 0, 0, -(parBendRadius + HalfDepth)
oPort2.Set (parBendRadius + HalfDepth), 0, 0
Dim LineStrCP
LineStrCP As N New
ew AutoMath.DPosition
AutoMath.DPosition
LineStrCP.Set
LineStrCP.Set 0, 0, -(
-(parBendRadius
parBendRadius + H
HalfDepth)
alfDepth)
LineStrPoints(0)
LineStrPoints(0) = L
LineStrCP.x
ineStrCP.x - H
HalfDepth
alfDepth
LineStrPoints(1) = L
LineStrPoints(1) LineStrCP.y
ineStrCP.y - H
HalfWidth
alfWidth
LineStrPoints(2)
LineStrPoints(2) = L
LineStrCP.z
ineStrCP.z
LineStrPoints(3) = L
LineStrPoints(3) LineStrCP.x
ineStrCP.x + HalfDepth
LineStrPoints(4)
LineStrPoints(4) = L
LineStrCP.y
ineStrCP.y - H
HalfWidth
alfWidth
LineStrPoints(5)
LineStrPoints(5) = L
LineStrCP.z
ineStrCP.z
LineStrPoints(6) = L
LineStrPoints(6) LineStrCP.x
ineStrCP.x + HalfDepth
LineStrPoints(7)
LineStrPoints(7) = L
LineStrCP.y
ineStrCP.y + HalfWidth
LineStrPoints(8)
LineStrPoints(8) = L
LineStrCP.z
ineStrCP.z
LineStrPoints(9) = L
LineStrPoints(9) LineStrCP.x
ineStrCP.x - H
HalfDepth
alfDepth
LineStrPoints(10)
LineStrP oints(10) = L
LineStrCP.y
ineStrCP.y + HalfWidth
LineStrPoints(11)
LineStrP oints(11) = L
LineStrCP.z
ineStrCP.z
Set oLineString = geomFactory.LineStrings3d.Create
geomFactory.LineStrings3d.CreateByPoints(Noth
ByPoints(Nothing,
ing, 4, LineStrPoints)
LineStrPoints)
ProjVector.Set 0, 1, 0
CP.Set (parBendRadius + HalfDepth), 0, -(parBendRadius + HalfDepth)
Set ObjBody1 = PlaceRevolution(m_OutputColl, oLineString, ProjVector, CP, Angle, False)
Set oLineString = Nothing
' Set the output
iOutput = iOutput + 1
m_OutputColl.AddOutput
m_OutputCo ll.AddOutput arrayOfOu
arrayOfOutputs(iOutput)
tputs(iOutput),, ObjBody1
Set ObjBody1 = Nothing
Dim stpoint
stpoint As IJDPosition
IJDPosition
Dim enpoint
enpoint As IJDPosi
IJDPosition
tion
iOutput = iOutput + 1
Set ObjBody1 = m_oGeomHelper
m_oGeomHelper.CreateCylinder(
.CreateCylinder(arrayOfOutputs(
arrayOfOutputs(iOutput),
iOutput), stpoint, enpoint,
parFrameRadius)
Set ObjBody1 = Nothing
104
'vertical cylinders------
cylinders----------
----
stpoint.Set oPort1.x - HalfDepth, oPort1.y - HalfWidth, oPort1.z
enpoint.Set -HalfDepth, -HalfWidth, HalfDepth
iOutput = iOutput + 1
Set ObjBody1 = m_oGeomHelper
m_oGeomHelper.CreateCylinder(
.CreateCylinder(arrayOfOutputs(
arrayOfOutputs(iOutput),
iOutput), stpoint, enpoint,
parFrameRadius)
Set ObjBody1 = Nothing
'-----------
stpoint.Set oPort1.x - HalfDepth, oPort1.y + HalfWidth, oPort1.z
enpoint.Set -HalfDepth, HalfWidth, HalfDepth
iOutput = iOutput + 1
Set ObjBody1 = m_oGeomHelper
m_oGeomHelper.CreateCylinder(
.CreateCylinder(arrayOfOutputs(
arrayOfOutputs(iOutput),
iOutput), stpoint, enpoint,
parFrameRadius)
Set ObjBody1 = Nothing
'horizontal cylinders------
cylinders-----------
-----
stpoint.Set oPort2.x, oPort2.y - HalfWidth, oPort2.z + HalfDepth
enpoint.Set -HalfDepth, -HalfWidth, HalfDepth
iOutput = iOutput + 1
Set ObjBody1 = m_oGeomHelper
m_oGeomHelper.CreateCylinder(
.CreateCylinder(arrayOfOutputs(
arrayOfOutputs(iOutput),
iOutput), stpoint, enpoint,
parFrameRadius)
Set ObjBody1 = Nothing
'-----------
stpoint.Set oPort2.x, oPort2.y + HalfWidth, oPort2.z + HalfDepth
enpoint.Set -HalfDepth, HalfWidth, HalfDepth
iOutput = iOutput + 1
Set ObjBody1 = m_oGeomHelper
m_oGeomHelper.CreateCylinder(
.CreateCylinder(arrayOfOutputs(
arrayOfOutputs(iOutput),
iOutput), stpoint, enpoint,
parFrameRadius)
Set ObjBody1 = Nothing
oDir.Set 0, 0, -1
oRadialOrient.Set
oRadialOrient.S et -1, 0, 0
Set objCableTrayPort = CreateCableTrayPort(oPartFclt, 1, oPort1, oDir, oRadialOrient, m_OutputColl)
' Set the output
iOutput = iOutput + 1
m_OutputColl.AddOutput
m_OutputCo ll.AddOutput arrayOfOu
arrayOfOutputs(iOutput)
tputs(iOutput),, objCableTra
objCableTrayPort
yPort
Set objCableTrayPort = Nothing
Set oPort1 = Nothing
105
15. Use the SP3D reference tool to find the library that reference to IJCabletrayPart
17. Compile the Visual Basic project and save the dll in c:\train \ SP3D90VTrayOu tside
SP3D90VTrayOutside
18. Save the Visual Basic SP3D90VTrayOutside project.
19. Open the [Install Product]\ CatalogData\BulkLoad\Datafiles\CableTray.xls. Make sure to
remove the Read-Only setting on the file.
20. Save workbook as Cabletray2.xls in c:\train. Go to the Custom Interface sheet and edit/add
the following row:
Notes:
• UserClassName and OccClassName are optional attributes.
• Creating the bmp file is optional. You can use Microsoft Paint to create the file and
save it under your \\ma
your \\machine\sym
chine\symbols\Sym
bols\SymbolIcons
bolIcons..
22. Load the information into the Catalog using the Append Mode. Once the bulkload process is
complete, review the log file. Next, run the View Generator utility on the model to re-create
the views in the model database. Finally, Re-generate the report databases.
23. Go to thespec.
L6-12B Electrical Task and place the 90 deg vertical outside cabletray bend using CB-S1-
108
109
• Create a Frame Box Connector using the SmartPlant 3D Part Definition Visual Basic
Wizard
Skip the following lines if the symbol wizard is installed on your machine.
4. Run Microsoft Visual Basic 6.0. Close the Microsoft New Project dialog box.
110
5. Go to the Add-Ins Option and Select SmartPlant 3D Part Definition Wizard.
6. Select Next button to skip the Introduction page. The Next step is to create the
SP3DFrameBox symbol definition template using SP3D part Definition Visual Basic Symbol
Wizard.
7. In this page you define the Visual Basic project name. Key in the following information:
8. Select Next button to go the next page. This page is to define any input properties that are
defined in the part class that are constant for all occurrences. We are going to define two
attributes for our SP3DFrameBox. Key in the following data:
112
9. Select Next button to go the next page. Skip this page because our cabletray part does not
have occurrence attributes.
10. Select Next button to go the next page. This page identifies all the outputs of the cabletray
part. We are going to define one output and one port for our SP3DFrameBox. The output is
in the simple Physical aspect.
113
11. Hit Next button and Finish button to create the SP3DFrameBox project template. The Visual
Basic project consists of the following m
modules:
odules:
' Inputs
m_oSymbolHelper.NumInputs = 2
m_oSymbolHelper.AddInputDef 1, "FrameA", "Frame Depth", 4
m_oSymbolHelper.AddInputDef 2, "FrameB", "Frame Width", 4
' Outputs
m_oSymbolHelper.NumOutputs
m_oSymbolHelper.NumOutputs = 2
m_oSymbolHelper.AddOutputD
m_oSymbolHelper.AddOutputDef
ef 1, "Body1", "Body1", 1
m_oSymbolHelper.AddOutputD
m_oSymbolHelper.AddOutputDef
ef 2, "port1", "Port1", 1
' Aspects
m_oSymbolHelper.NumAspects = 1
m_oSymbolHelper.AddAspectDef 1, "SimplePhysical", "SimplePhysical", 1
Exit Sub
Errx:
Err.Raise Err.Number, Err.Source & " " & METHOD, Err.Description, _
Err.HelpFile, Err.HelpContext
End Sub
14. Go to CSimplePhysical Class module and add your code snippet to create the outputs:
15. Go to the Insert your code for output 1 (Body1) section. The following code snippet will use
the 3D geometry factory to create a frame. Use the 3D geometry factory to create a 3D plane
using the Frame A and Frame B dimensions. Also, use the
RetrieveCableTrayPortproperties() method to retrieve the actual width and actual depth of
the part.
iOutput = 0
Points(0) = 0
Points(1) = parFrameB / 2
Points(2) = parFrameA / 2
Points(3) = 0
Points(4) = -parFrameB / 2
Points(5) = parFrameA / 2
Points(6) = 0
Points(7) = -parFrameB / 2
Points(8) = -parFrameA / 2
Points(9)
Points(10)==0parFrameB / 2
Points(11) = -parFrameA / 2
115
Note: Go to tthe
he declaration section and delete this statement Dim ObjBody1
ObjBody1 As Object
17. The following code snippet will use the CreateCableTrayPort() method to create the
cabletray port. The CreateCableTrayPort
CreateCableTrayPort()
() routine is located
located in the Geometry3d module.
oDir.Set -1, 0, 0
oRadialOrient.Set 0, 0, 1
Set objCableTrayPort = CreateCableTrayPort(oPartFclt, 1, CenterPos, oDir, _
oRadialOrient, m_OutputColl)
' Set the output
iOutput = iOutput + 1
m_OutputColl.AddOutput arrayOfOutputs(iOutput), objCableTrayPort
Use the Set statement to clear the references from all object variables.
18. Use the SP3D reference tool to find the library that reference IJCabletrayPart
19. Select Ingr Sp3d RefDataCableway 1.0 Type Library. Select the Close button.
116
Compile the Visual Basic project and save the dll in the c:\train\SP3DFrameBox
120
1. Open the SP3DFrameBox.vb program and add the following entries in the output section:
' Outputs
m_oSymbolHelper.NumOutputs = 4
m_oSymbolHelper.AddOutputDef 1, "Body1", "Body1", 1
m_oSymbolHelper.AddOutputDef 2, "Body2", "Body2", 1
m_oSymbolHelper.AddOutputDef 3, "Body3", "Body3", 1
m_oSymbolHelper.AddOutputDef 4, "port", "port", 1
2. Go to CSimplePhysical Class module and add your code snippet to create the hole:
Note: Insert these lines after adding the bounded plane into the output collection.
'----------------------------
' Create the hole boundaries
'----------------------------
0, Points(1)
lines.Add - thickness1, Points(2) - thickness2)
oline
3. Use the Set statement to clear the references from all object variables.
Dim iCount=As
For iCount Integer
1 To lines.Count
lines.Remove 1
Next iCount
Set lines = Nothing
Set oContour = Nothing
Set STPoint = Nothing
4. Add lines to create the right plate using the PlaceBox() routine.
' <------|-------->|____|-HD
' 0.001 0.01
'
122
Dim HD As Double
Dim HW As Double
HD = parActualDepth / 2
HW = parActualWidth / 2
5. Add lines to create the left plate using the PlaceBox() routine.
6. Use the Set statement to clear the references from all object variables.
Set
Set geomFactory = Nothing
ObjBody2 = Nothing
Note:
If you did not undo the placement of the symbol in the previous lab, then you must update
the symbol definition
definit ion cached in the model. To notify SP3D that your symbol
symbol has changed,
you must increase the major version number of the dll.
13. Go to the Electrical Task and review the Frame Box connector.
124
• Create a Junction Box using the SmartPlant 3D Part Definition Visual Basic Wizard
Skip the following lines if the symbol wizard is installed on your machine.
c:\train\ SP3DJunctionBox
4. Run Microsoft Visual Basic 6.0. Close the Microsoft New Project dialog box.
125
5. Go to the Add-Ins Option and Select SmartPlant 3D Part Definition Wizard.
6. Select Next button to skip the Introduction page. The Next step is to create the
SP3DJunctionBox symbol definition template using SP3D part Definition Visual Basic
Symbol Wizard.
7. In this page you define the Visual Basic project name. Key in the following information:
8. Select Next button to go the next page. This page is to define any input properties that are
defined in the part class that are constant for all occurrences. We are going to define two
attributes for our SP3DJunctionBox. Key in the following data:
9. Select Next button to go the next page. Skip this page because our conduit part does not have
occurrence attributes.
127
10. Select Next button to go the next page. This page identifies all the outputs of the conduit part.
We are going to define one output and two ports for our SP3DJunctionBox. The output is in
the simple Physical aspect.
128
11. Hit Next button and Finish button to create the SP3DFrameBox project template. The Visual
Basic project consists of the following modules:
Const METHOD
On Error = "Class_Initialize:"
GoTo Errx
' Inputs
m_oSymbolHelper.NumInputs = 2
m_oSymbolHelper.AddInputDef 1, "FacetoFace", "FacetoFace", 4
m_oSymbolHelper.AddInputDef 2, "UnionDiameter", "UnionDiameter", 4
' Outputs
m_oSymbolHelper.NumOutputs = 3
m_oSymbolHelper.AddOutputDef 1, "Body1", "Body1", 1
m_oSymbolHelper.AddOutputDef 2, "port1", "port1", 1
m_oSymbolHelper.AddOutputDef 3, "port2", "port2", 1
' Aspects
m_oSymbolHelper.NumAspects = 1
m_oSymbolHelper.AddAspectDef 1, "SimplePhysical", "SimplePhysical", 1
Exit Sub
Errx:
Err.Raise Err.Number, Err.Source & " " & METHOD, Err.Description, _
Err.HelpFile, Err.HelpContext
End Sub
14. Go to CSimplePhysical Class module and add your code snippet to create the outputs:
15. Go to the Insert your code snippet for output 1 (Body1) section. The following lines will use
the PlaceBox() routine to create a Box for the Junction box. The PlaceBox routine is located
at basGeom3d module. This function takes the two opposite corners of the box as input
parameters.
129
iOutput = iOutput + 1
m_OutputColl.AddOutput arrayOfOutputs(iOutput), ObjBody1
16. The following code snippet will use the CreateConduitNozzle() method to create the conduit
ports. The CreateConduitNozzle() routine is located
located in the Geometry3d
Geometry3d module.
Dim flangeDiam
Dim sptOffset AsAs
Double
Double
Dim depth As Double
Dim ConduitOD As Double
130
Compile the Visual Basic project and save the dll in c:\train\ SP3DJunctionBox
Note: You can make a copy of the ConduitCPL sheet to create the ConduitJunctionBox
sheet.
Notes:
•
•
UserClassName
Creating the bmpand
fileOccClassName
is optional. Youare optional
can attributes.
use Microsoft Paint to create the file and
your \\machine\sym
save it under your \\machine\symbols\Sym
bols\SymbolIcons
bolIcons..
132
ConduitCommodityMatlControlData
ConduitCommodityMatlControlData Data
ShortCodeHierarchyRule Data
25. Create a sheet called ShortCodeHierarchyRule and add the appropriate records as shown
below:
135
c:\train\HollowCy
12. Go to the Add-Ins Option and Select SmartPlant 3D Part Definition Wizard.
13. The Next step is to create the shape symbol definition template using SP3D Part Definition
Symbol Wizard.
136
14. In this page you define the Visual Basic project name. Key in the following information:
Project Name: HollowCy
Author: Student
Company: Intergr aph
Intergraph
Intergraph Module location: c:\Train\IngrModules
Save the Visual Basic project as: c:\Train\ HollowCy
Disable the create bulkload spreadsheet.
137
15. Select Next button to go the next page. This page is to define any properties that are constant
for all occurrences of the operator part. Select Next button to go the next page.
16. This page defines all occurrence properties of the shape part. Key in the following data:
138
17. Select Next button to go the next page. This page identifies all the outputs of the shape part.
We are going to define one output: Body1
18. Press Next button and Finish button to create the shape project template. The Visual Basic
project consists of the following modules:
139
' Inputs
m_oSymbolHelper.NumInputs
m_oSymbolHelper.NumInputs = 3
m_oSymbolHelper.AddInputDe
m_oSymbolHelper.AddInputDeff 1, "A", "A", 2
m_oSymbolHelper.AddInputDe
m_oSymbolHelper.AddInputDeff 2, "B", "B", 1
m_oSymbolHelper.AddInputDe
m_oSymbolHelper.AddInputDeff 3, "C", "C", 0.
0.44
' Outputs
m_oSymbolHelper.NumOutputs = 8
m_oSymbolHelper.AddOutputD
m_oSymbolHelper.AddOutputDef
ef 1, "Body1", "Body1", 1
m_oSymbolHelper.AddOutputDef
m_oSymbolHelper.AddOutputDef 2, "Body2", "Body2", 1
m_oSymbolHelper.AddOutputD
m_oSymbolHelper.AddOutputDef
ef 3, "Body3", "Body3", 1
m_oSymbolHelper.AddOutputD
m_oSymbolHelper.AddOutputDef
ef 4, "Body4", "Body4", 1
m_oSymbolHelper.AddOutputD
m_oSymbolHelper.AddOutputDef
ef 5, "Body5", "Body5", 1
m_oSymbolHelper.AddOutputD
m_oSymbolHelper.AddOutputDef
ef 6, "Body6", "Body6", 1
m_oSymbolHelper.AddOutputD
m_oSymbolHelper.AddOutputDef
ef 7, "Body7", "Body7", 1
m_oSymbolHelper.AddOutputD
m_oSymbolHelper.AddOutputDef
ef 8, "Body8", "Body8", 1
' Aspects
m_oSymbolHelper.NumAspects = 1
m_oSymbolHelper.AddAspec
m_oSymbolHelper.AddAspectDef
tDef 1, "SimplePhysi
"SimplePhysical",
cal", "SimplePhysica
"SimplePhysical",
l", 1
Exit Sub
Errx:
Err.Raise Err.Number,
Err.HelpFile,
Err.HelpFi Err.Source
Err.Source
le, Err.HelpContext & " " & METHOD, Er
Err.HelpContext Err.Description,
r.Description, _
End Sub
13. Go to CSimplePhysical Class module and add your code snippet to create the outputs:
14. Go to the “ Insert your
your code for output (OPBody)” section. The following lines will use the
output 1 (OPBody)
Geometry Factory methods to create the graphic entities for the hollow cylinder.
' Inputs
Set oPartFclt = arrayOfInputs(1)
parA = arrayOfInputs(2)
arrayOfInputs(2)
parB = arrayOfInputs(3)
arrayOfInputs(3)
parC = arrayOfInputs(4)
arrayOfInputs(4)
m_oGeomHelper.OutputCollection = m_OutputColl
iOutput = 0
Dim oErrors As IJEditErr
IJEditErrors
ors
140
Dim oGeomFactory
oGeomFactory As New GeometryFactory
Dim oCircle(2)
oCircle(2) As Circle3d
Circle3d
Dim oProjection
oProjection As P
Projection3d
rojection3d
Dim oDir
oDir As IJDVector
IJDVector
Set oDir = New DVector
oDir.Set 1, 0, 0
iOutput = iOutput + 1
m_OutputColl.AddOutput arrayOfOutputs(iOutput), oCircle(1)
iOutput = iOutput + 1
m_OutputColl.AddOutput arrayOfOutputs(iOutput), oCircle(2)
iOutput = iOutput + 1
m_OutputColl.AddOutput
m_OutputCo ll.AddOutput arrayOfOu
arrayOfOutputs(iOutput)
tputs(iOutput),, oProjection
iOutput = iOutput + 1
m_OutputColl.AddOutput
m_OutputCo ll.AddOutput arrayOfOu
arrayOfOutputs(iOutput)
tputs(iOutput),, oProjection
Dim oPlane
oPlane As IngrGeom3D
IngrGeom3D.Plane3d
.Plane3d
Set oPlane = oGeomFactory.Planes3d.Cr
oGeomFactory.Planes3d.CreateByPointNor
eateByPointNormal(m_OutputCo
mal(m_OutputColl.ResourceManager
ll.ResourceManager,, _
0, 0, 0, 1, 0, 0)
Dim oElements
oElements As IJElemen
IJElements
ts
Dim objCStr
objCStr As IngrGeom3D
IngrGeom3D.ComplexString3
.ComplexString3d
d
Dim i As Integer
For i = 1 To 2
oElements.Add oCircle(i)
Set objCStr = oGeomFactory.ComplexStrings3d
oGeomFactory.ComplexStrings3d.CreateByCur
.CreateByCurves(Nothing,
ves(Nothing, oElements)
oPlane.AddBoundary
oPlane.AddBound ary objCStr
oElements.Clear
objCStr.RemoveCurve
objCStr.Remov eCurve True
Next i
iOutput = iOutput + 1
141
m_OutputColl.AddOutput
m_OutputColl.AddOutput arrayOfOu
arrayOfOutputs(iOutput)
tputs(iOutput),, oPlane
iOutput = iOutput + 1
m_OutputColl.AddOutput arrayOfOutputs(iOutput), oCircle(1)
iOutput = iOutput + 1
m_OutputColl.AddOutput arrayOfOutputs(iOutput), oCircle(2)
For i = 1 To 2
oElements.Add oCircle(i)
Set objCStr = oGeomFactory.ComplexStrings3d
oGeomFactory.ComplexStrings3d.CreateByCur
.CreateByCurves(Nothing,
ves(Nothing, oElements)
oPlane.AddBoundary
oPlane.AddBound ary objCStr
oElements.Clear
objCStr.RemoveCurve
objCStr.Remov eCurve True
Next i
iOutput = iOutput + 1
m_OutputColl.AddOutput
m_OutputCo ll.AddOutput arrayOfOu
arrayOfOutputs(iOutput)
tputs(iOutput),, oPlane
15. Compile the Visual Basic project and save the dll in the c:\Train\ HollowCy
16. Save the Visual Basic HollowCy project.
17. Open the Shapes.xls located in [Install Product]\CatalogData\BulkLoad\DataFiles
18. Go the ClassNodeType sheet and add the following row:
21. Create a New Part Class called HollowCy with the following data:
Note: Make a copy of the RtCircularCylinder sheet to create the HollowCy sheet.
Review and edit the class definition row:
Notes:
• UserClassName and OccClassName are optional attributes.
22. Create a new interface called IJUAHollowCy. Go to the Custom Interface sheet and add the
following rows:
23. Use Microsoft Paint and create a HollowCy.bmp and HollowCyicon.bmp. Place these files
on your symbol share ( \\SERVER\Sym
\\SERVER\Symbols\Sym
bols\SymbolIcons
bolIcons and
\\Server\Symb
\\Server\Symbols\ShapeTy
ols\ShapeTypes pes))
26. Load the information into the Catalog using the Append mode. Once the bulkload process is
completed, run the View Generator utility on the model to re-create the views in the model
database. Finally, Re-generate the report databases.
27. Open a new session file and go to the Equipment Task. Select the place shape command and
place your shape.
144
Appendix
The Symbol Helper Reference provides documentation for symbol math functions and
properties.
IJSymbolHelper
This interface provides methods to help inin creating the definition of a Visual Basic sym
symbol.
bol. It
provides the implementation of the IJDUserSymbolServices interface as well as provides support
for declaring the inputs and outputs of the symbol. Call this interface when you want to:
• Instantiate a symbol definition in a datastore.
• Update an existing symbol definition.
• Compute the symbol using a function.
• Edit the symbol occurrence.
Methods
InvokeRepresentat ion(ByVal sblOcc As Object, ByVal repName As String, ByVal outputcoll As Object, ByRef
InvokeRepresentation(ByVal
arrayOfInputs())
Description:
Descripti on: This method will create the object that contains the implementat
implementation
ion details for the required
representation. The wizard follows a specific convention like so:
ProjectName.<RepresentationName>.
So the helper function can obtain the progid given this rule and create the object and then call the
method ‘Run’ on the IDispatch interface of this object. This method will also take all the
parameters in addition to an array of strings that contain the names of outputs belonging to that
representation.
Parameters:
[in] sblOcc Symbol occurrence that calls the method.
[in] repName Name of the representa
representation
tion requested on the symbol.
[in] outputcoll Collection object to which the generated outputs will be attach
attached.
ed.
[in] arrayOfInputsA safearray of inputs defined as VARIANT.
146
Properties
NumInputs as Integer
Description:
Descripti on: Number of inputs for the symbol
Modifiability: Read/write
NumOutputson: as Integer
Description:
Descripti Number of outputs for the symbol.
Modifiability: Read/write
NumAspects as Integer
Description:
Descripti on: Number of aspects defined for the symbol
Modifiability: Read/write
ProjectName as String
Description:
Descripti on: Project Name for the symbol
Modifiability: Read/write
ClassName as String
Description:
Descripti on: Class name for the symbol
Modifiability: Read/write
147
IJSymbolGeometryHelper
This interface provides methods to help in creating simple geometric primitives like Cylinder
(given center, radius and length), Cone (given the 4 points), Sphere (center and radius), Torus
(center, major radius, minor radius). The other geometric primitives are not yet implemented.
Methods
Parameters:
[in] Output Required Output as string
[in] ChildPart Required Object ChildPart
[in] Position Required IJDPosition Position
[in] VecX Required IJDVector VecX
[in] VecY Required IJDVector VecY
[in] VecZ Required IJDVector VecZ
CreateCylinder(( Output As S
CreateCylinder String,
tring, PosStart As IJDPosition, PosEnd As IJDPosition, Diameter As Double) As
Object
Description:
Descripti on: Creates the Cylinder Object and adds it to the output collection
Parameters:
[in] Output Required Output as string
[in] PosStart Required IJDPosition Start
[in] PosEnd Required IJDPosition End
[in] Diameter Required double value – diameter of the Cylinder
148
CreatePrism(
CreatePri sm( Output As String, Width As Double, Depth As Double, Length As Double, Width2 As Do
Double,
uble,
Depth2 As Double, Optional Offset As Double = 0#) As Object
Description:
Descripti on: Creates the CreatePris
CreatePrismm Object and adds it to the output collection
Parameters:
[in] Output Required Output as string
[in] Width Required double value
[in] Depth Required double value
[in] Length Required double value
[in] Width2 Required double value
[in] Depth2, Required double value
[in, defaultvalue(0)] Optional double value
Offset
149
CreateProjectedShape(
CreatePr ojectedShape( Output As String, Length As Double, Curve As Object) As Object
Description:
Descripti on: Creates the CreateProjectedSh
CreateProjectedShape
ape Object and adds it to the output collection
Parameters:
[in] Output Required Output as string
[in] Length Required double value
[in] Curve Required object curve
CreateProjectedShapeByPoints(
CreatePr ojectedShapeByPoints( Output As String, NumberOfPoints As Long, Length As Double, Points As
IJElements) As Object
Description:
Descripti on: Creates the CreateProjectedSh
CreateProjectedShapeByPoints
apeByPoints Object and adds it to the output collection
Parameters:
[in] Output Required Output as string
[in] Required long value
NumberOfPoints
[in] Length Required double value
[in] Points Required point objects as IJElements collection
CreateRectan gularTorus( Output As String, Radius As Double, SweepAngle As Double, Width As Double,
CreateRectangularTorus(
Depth As Double) As Object
Description:
Descripti on: Creates the CreateRectan
CreateRectangularTorus
gularTorus Object and adds it to the output collection
Parameters:
[in] Output Required Output as string
[in] Radius Required double value
[in] SweepAngle
SweepAngle Required do
double
uble value
[in] Width Required double value
[in] Depth Required double value
CreateSemiEllipsoid(
CreateSemi Ellipsoid( Output As String, Origin As IJDPosition, NormalAxis As IJDVector, MajorAxis As
150
[in]
MinorAxisRadius Required long value
CreateSphere(
CreateSph ere( Output As String,
String, Origin As IJDPosition, Radius As Double) As Object
Description:
Descripti on: Creates the CreateSpher
CreateSpheree Object and adds it to the output collection
Parameters:
[in] Output Required Output as string
[in] Origin Required IJDPosition Origin
[in] Radius Required double value
Parameters:
[in] Output Required Output as string
[in] Origin Required IJDPosition Origin
[in] NormalAxis Required IJDVector NormalAxis
[in] MajorAxis Required IJDVector MajorAxis
[in] Radius Required double value
[in] Angle Required double value
[in] Diameter Required double value
CreateTr ansitionalElement(( Output As String, Width As Double, Depth As Double, Length As Double,
CreateTransitionalElement
Radius As Double,
Double, Offset As Double)
Double) As Object
Description:
Descripti on: Creates the CreateTran
CreateTransitionalElement
sitionalElement Object and adds it to the output collection
Parameters:
[in] Output Required Output as string
[in] Width Required double value
[in] Depth Required double value
[in] Length Required double value
[in] Radius Required double value
[in] Offset Required double value
Properties
AutoTransformUpdate() As Boolean
Description:
Descripti on: Adding or getting the AutoTransformUpdate boolean value
Modifiability: Read/write
OutputCollection() As IJDOutputCollection
Description:
Descripti on: Adding or getting created output objects in the output collection
151
Modifiability: Read/write
Transform() As IJDT4x4
Description:
Descripti on: Adding or getting the transformati
transformation
on matrix IJDT4x4
Modifiability: Read/write
152
Description
The GeometryFactory object is the class factory for the creation of geometry entities. The factory
implements properties that return "collection-like" interfaces for each of the geometry types.
These interfaces have creation methods that the application programmer can use to create,
initialize, and optionally specify a persistent database connection for the object.
If the objects are created with a NULL database connection, the object is created as a "transient."
Transient objects can be displayed and added to the highlight system, but they do not participate
in transactions or relationships.
IJGeometryFactory
Use this interface when you want to create transient or persistent geometry objects
Properties
Points3d ( ) as IPoints3d
Description:
Descripti on: Returns a pointer (pVal) to the IPoints3d interface of the first element in the collection.
Modifiability: Read Only
Lines3d ( ) as ILines3d
Description:
Descripti on: Returns a pointer (pVal) to the ILines3d interface of the first element in the collection.
Modifiability: Read Only
Arcs3d ( ) as IArcs3d
Description:
Descripti on: Returns a pointer (pVal) to the IArcs3d interface of the first element in the collection.
Modifiability: Read Only
Circles3d ( ) as ICircles3d
Description:
Descripti on: Returns a pointer (pVal) to the ICircles3d interface of the first element in the collection.
Modifiability: Read Only
Ellipses3d ( ) as IEllipses3d
Description:
Descripti on: Returns a pointer (pVal) to the IEllipses3d interface of the first element in the collection.
Modifiability: Read Only
EllipticalArcs3d ( ) as IEllipticalArcs3d
Description:
Descripti on: Returns a pointer (pVal) to the IElliptical
IEllipticalArcs3d
Arcs3d interface of the first element in the
collection.
Modifiability: Read Only
153
LineStrings3d ( ) as ILineStrings3d
Description:
Descripti on: Returns a pointer (pVal) to the ILineStrings3d interface of the first element in the collection.
Modifiability: Read Only
BSplineCurves3d ( ) as IBSplineCurves3d
Description:
Descripti on: Returns a pointer (pVal) to the IBSplineCurves3d interface of the first element in the
collection.
Modifiability: Read Only
ComplexStrings3d ( ) as IComplexStrings3d
Description:
Descripti on: Returns a pointer (pVal) to the IComplexStrings3d interface of the first element in the
collection.
Modifiability: Read Only
Planes3d ( ) as IPlanes3d
Description:
Descripti on: Returns a pointer (pVal) to the IPlanes3d interface of the first element in the collection.
Modifiability: Read Only
Cones3d ( ) as ICones3d
Description:
Descripti on: Returns a pointer (pVal) to the ICones3d interface of the first element in the collection.
Modifiability: Read Only
Projections3d ( ) as IProjections3d
Description:
Descripti on: Returns a pointer (pVal) to the IProjections3d interface of the first element in the collection.
Modifiability: Read Only
Revolutions3d ( ) as IRevolutions3d
Description:
Descripti on: Returns a pointer (pVal) to the IRevolutions3d interface of the first element in the collection.
Modifiability: Read Only
RuledSurfaces3d ( ) as IRuledSurfaces3d
Description:
Descripti on: Returns a pointer (pVal) to the IRuledSurfaces3d interface of the first element in the
collection.
Modifiability: Read Only
Spheres3d ( ) as ISpheres3d
Description:
Descripti on: Returns a pointer (pVal) to the ISpheres3d interface of the first element in the collection.
Modifiability: Read Only
Tori3d ( ) as ITori3d
Description:
Descripti on: Returns a pointer (pVal) to the ITori3d interface of the first element in the collection.
Modifiability: Read Only
BSplineSurfaces3d ( ) as IBSplineSurfaces3d
Description:
Descripti on: Returns a pointer (pVal) to the IBSplineSurfaces3d interface of the first element in the
collection.
Modifiability: Read Only
154
Methods:
CreateBSplineSurfaceByParametersWCaps
CreateBSplineSurfaceByParametersWCaps Method
Description
The CreateBSplineSurfaceByParametersWCaps method creates and returns a BSplineSurface3d object based on a
desired order, a set of poles, and optional caps. Weights and knots are optional and are set to NULL, or an empty
array. The output will be the surface, then the caps.
If the order is equal to the number of poles, the curve evolves into the control polygon of a Bezier curve.
B-spline weights can be considered a gravitational type force with the magnitude of the weight equal to the pulling
force. The weights are always
always normalized. If no weights are present, the cucurve
rve is considered to be non-rational and
may be NULL. Non-rational curves have weights with a value value of 1.
The B-spline knots define the parameterization of the curve, and they may be periodic. Knots, also known as knot
vectors, must be monotonic and strictly
strictly increasin
increasing.
g. Monotonic refers to the successive terms as non-decreas
non-decreasing
ing or
non-increasing.
The Order property determines the relative accuracy of the poles with regard to the points that are entered to create
the curve. The order returned evaluat
evaluateses as a polynomial
polynomial degree plus one. For example, an order
order of 4 defines cubic.
Since it is more efficient to use even-order b-spline curves, the number of poles (and knots) are maximized by
increasing the order to the next even number.
Syntax
object.CreateBSplineSurfaceByParametersWCaps (pConnection, uNumPoles, vNumPoles, Poles, Weights, uOrder,
vOrder, uKnots, vKnots, uPeriodic, vPeriodic, ReverseNor, Solid, WCaps, numCaps)
Parameter Data Type D
Description
escription
pConnection Unknown Required. This argument is a pointer to IUnknown. It creates a transient object.
uNumPoles long Required. This argument is the number of poles in the u-direction. The type is long.
vNumPoles long Required. This argument is the number of poles in the v-direction. The type is long.
Poles double Required. This argument is a SAFEARRAY of poles. The type is double.
Weights double Required. This argument is a SAFEARRAY of weights. The type is double.
uOrder long Required. This argument is the order in the u-direction. The type is long.
vOrder long Required. This argument is the order in the v-direction. The type is long.
uKnots double Required. This argument is a SAFEARRAY of knots. The type is double.
vKnots double Required. This argument is a SAFEARRAY of Knots. The type is double.
uPeriodic Boolean Required. This argument is a Boolean flag that specifies whether the surface is periodic in u.
vPeriodic Boolean Required. This argument is a Boolean flag that specifies whether or not the surface is periodic in v.
ReverseNor
Reverse Nor Boolean Required. This argument specifies the outward normal. It is False when the outward normal is U X V.
It is True when the outward normal is U (curve) cross V (proj vector). The type is Boolean.
Solid Boolean Required. This argument is a Boolean flag that specifies whether or not the object is solid. Possible
values are: 0 - Set normal as hollow; 1 - Set normal as solid; 2 - Set normal according to input point; 3
- Just toggle the outward normal (no checks).
155
CreateBy2Points Method
Description
The CreateBy2Points method creates and returns a Line3d object defined by two points.
Syntax
object.CreateBy2Points (pConnection, StartX, StartY, StartZ, EndX, EndY, EndZ)
Parameter Data Type Descriptio
Description
n
pConnection Unknown Required. This argument is a pointer to IUnknown. It creates a transient object.
StartX double Required. This argument is the X-coordinate for the starting point. The type is double.
StartY double Required. This argument is the Y-coordinate for the starting point. The type is double.
StartZ double Required. This argument is the Z-coordinate for the starting point. The type is double.
EndX double Required. This argument is the X-coordinate for the ending point. The type is double.
EndY double Required. This argument is the Y-coordinate for the ending point. The type is double.
EndZ double Required. This argument is the Z-coordinate for the ending point. The type is double.
Description
The CreateBy3Points method creates and returns an Arc3d object given three non-colinear points along the arc.
Syntax
object.CreateBy3Points (pConnection, StartX, StartY, StartZ, AlongX, AlongY, AlongZ, EndX, EndY, EndZ)
Parameter Data Type Descriptio
Description
n
pConnection Unknown Required. This argument is a pointer to IUnknown. It creates a transient object.
StartX double Required. This argument is the X-coordinate for the starting point on the arc. The type is double.
StartY double Required. This argument is the Y-coordinate for the starting point on the arc. The type is double.
StartZ double Required. This argument is the Z-coordinate for the starting point on the arc. The type is double.
AlongX double Required. This argument is the X-coordinate for the middle point on the arc. The type is double.
AlongY double Required. This argument is the Y-coordinate for the middle point on the arc. The type is double.
AlongZ double Required. This argument is the Z-coordinate for the middle point on the arc. The type is double.
EndX double Required. This argument is the X-coordinate for the ending point on the arc. The type is double.
EndY double Required. This argument is the Y-coordinate for the ending point on the arc. The type is double.
EndZ double Required. This argument is the Z-coordinate for the ending point on the arc. The type is double.
156
Description
The CreateBy3Points method creates and returns a pointer (ppObj) to the IJCircle interface of a Circle3d object.
This method uses three inscribed non-colinear points to create the circle.
Syntax
object.CreateBy3Points (pConnection, X1, Y1, Z1, X2, Y2, Z2, X3, Y3, Z3)
Parameter Data Type Descriptio
Description
n
pConnection Unknown Required. This argument is a pointer to IUnknown. It creates a transient object.
X1 double Required. This argument is the first X-coordinate value. The type is double.
Y1 double Required. This argument is the first Y-coordinate value. The type is double.
Z1 double Required. This argument is the first Z-coordinate value. The type is double.
X2 double Required. This argument is the second X-coordinate value. The type is double.
Y2 double Required. This argument is the second Y-coordinate value. The type is double.
X3 double Required. This argument is the third X-coordinate value. The type is double.
Y3 double Required. This argument is the third Y-coordinate value. The type is double.
Z3 double Required. This argument is the third Z-coordinate value. The type is double.
CreateBy4Pts Method
Description
The CreateBy4Pts method creates and returns a pointer (ppObj) to the IJCone interface of a full bounded Cone3d.
This method takes as input a base center point, a top center point, a base starting point, and a top starting point.
The axis runs through the top center point and base center point, and the cone follows the right-hand rule about the
axis.
The base ellipse must not be degenerate, so the base center point cannot be the same as the base starting point.
To create a point cone, set the top center point to the top starting point.
Syntax
object.CreateBy4Pts (pConnection, CenterBx, CenterBy, CenterBz, CenterTx, CenterTy, CenterTz, StartBx, StartBy,
StartBz, StartTx, StartTy, StartTz, Solid)
Parameter Data Type Descriptio
Description
n
pConnection Unknown Required. This argument is a pointer to IUnknown. It creates a transient object.
CenterBx double Required. This argument is the X-coordinate of the base center point. The type is double.
CenterBy double Required. This argument is the Y-coordinate of the base center point. The type is double.
CenterBz double Required. This argument is the Z-coordinate of the base center point. The type is double.
CenterTx double Required. This argument is the X-coordinate of the top center point. The type is double.
CenterTy double Required. This argument is the Y-coordinate of the top center point. The type is double.
157
CenterTz double Required. This argument is the Z-coordinate of the top center point. The type is double.
StartBx
StartB x double Required. This argument is the X-coordinate of the base starting point. The type is double.
StartBy
StartB y double Required. This argument is the Y-coordinate of the base starting point. The type is double.
StartBzz
StartB double Required. This argument is the Z-coordinate of the base starting point. The type is double.
StartTx double Required. This argument is the X-coordinate of the top starting point. The type is double.
StartTy
StartT y double Required. This argument is the Y-coordinate of the top starting point. The type is double.
StartTzz
StartT double Required. This argument is the Z-coordinate of the top starti
starting
ng point. The type is double.
Solid Boolean Required. This argument is a Boolean flag indicating whether the cone is solid or not.
CreateByAxisMajorMinorRadius
CreateByAxisMajorMinorRadius Method
Description
The CreateByAxisMajorMinor method creates and returns a pointer (ppObj) to the IJTorus interface of a Torus3d
object. This method defines a torus by a point on the axis at the center of the torus, an axis vector, a vector toward
the center of a minor circle (determining the origin of UV space), a major radius, and a minor radius. Set major
radius = -major radius if the center of the torus is on the left-hand side of the axis, indicating the torus is a lemon
shape.
Syntax
object.CreateByAxisMajorMinorRadius (pConnection, AxisCenterX, AxisCenterY, AxisCenterZ, AxisVecX
AxisVecX,,
AxisVecY, AxisVecZ,
AxisVecZ, Or
OriginDirX,
iginDirX, Or
OriginDirY,
iginDirY, Or
OriginDirZ,
iginDirZ, MajorR
MajorRadius,
adius, MinorRadius, Solid)
MinorRadius,
Parameter Data Type Descriptio
Description
n
pConnection Unknown Required. This argument is a pointer to IUnknown. It creates a transient object.
AxisCenterX
AxisCenter X double Required. This argument is the X-coordinate of the point on the center axis. The type is double.
AxisCenterY
AxisCenter Y double Required. This argument is the Y-coordinate of the point on the center axis. The type is double.
AxisCenterZ
AxisCenter Z double Required. This argument is the Z-coordinate of the point on the center axis. The type is double.
AxisVecX double Required. This argument is the X-coordinate of a point along the axis vector. The type is double.
AxisVecY double Required. This argument is the Y-coordinate of a point along the axis vector. The type is double.
AxisVecZ double Required. This argument is the Z-coordinate of a point along the axis vector. The type is double.
OriginDirX
OriginDir X double Required. This argument is the X-coordinate of a point along the vector toward the center of the minor
circle. The type is double.
OriginDirY
OriginDir Y double Required. This argument is the Y-coordinate of a point along the vector toward the center of the minor
circle. The type is double.
OriginDirZ
OriginDir Z double Required. This argument is the Z-coordinate of a point along the vector toward the center of the minor
circle. The type is double.
MajorRadius double Required. This argument is the length of the major radius. The type is double.
MinorRadius double Required. This argument is the length of the minor radius. The type is double.
Solid Boolean Required. This argument is a Boolean flag indicating whether or not the torus is solid.
158
CreateByAxisMajorMinorRadiusSw
CreateByAxisMajorMinorRadiusSweep
eep Method
Description
The CreateByAxisMajorMinorRadiusSweep method creates and returns a pointer (ppObj) to the IJTorus interface of
a Torus3d object. This method defines a partial torus by a point on the axis at the center of the torus, an axis vector,
a vector toward the center of the minor circle (determining the origin of UV space), a major radius, a minor radius,
and a sweep angle. Set the major radius = -major radius if the center of the torus is on the left-hand side of the axis,
indicating the torus is a lemon shape.
Syntax
object.CreateByAxisMajorMinorRadiusSweep (pConnection, AxisCenterX, AxisCenterY, AxisCenterZ, AxisVecX,
AxisVecY, AxisVecZ,
AxisVecZ, Or
OriginDirX,
iginDirX, Or
OriginDirY,
iginDirY, Or
OriginDirZ,
iginDirZ, MajorR
MajorRadius,
adius, MinorRadi
MinorRadius, Solid)
us, SwAngle, Solid)
Parameter Data Type Descriptio
Description
n
pConnection Unknown Required. This argument is a pointer to IUnknown. It creates a transient object.
AxisCenterX
AxisCenter X double Required. This argument is the X-coordinate of a point on the center axis.The type is double.
AxisCenterY
AxisCenter Y double Required. This argument is the Y-coordinate of a point on the center axis.The type is double.
AxisCenterZ
AxisCenter Z double Required. This argument is the Z-coordinate of a point on the center axis.The type is double.
AxisVecX double Required. This argument is the X-coordinate of a point along the axis vector. The type is double.
AxisVecY double Required. This argument is the Y-coordinate of a point along the axis vector. The type is double.
AxisVecZ double Required. This argument is the Z-coordinate of a point along the axis vector. The type is double.
OriginDirX
OriginDir X double Required. This argument is the X-coordinate of a point along the vector toward the center of the minor
circle. The type is double.
OriginDirY
OriginDir Y double Required. This argument is the Y-coordinate of a point along the vector toward the center of the minor
circle. The type is double.
OriginDirZ
OriginDir Z double Required. This argument is the Z-coordinate of a point along the vector toward the center of the minor
circle. The type is double.
MajorRadius double Required. This argument is the length of the major radius. The type is double.
MinorRadius double Required. This argument is the length of the minor radius. The type is double.
SwAngle double Required. This argument is the sweep angle in radians. The type is double.
Solid Boolean Required. This argument is a Boolean flag indicating whether or not the torus is a solid.
CreateByCenterAxisRadEnds
CreateByCenterAxisRadEnds Method
Description
The CreateByCenterAxisRadEnds method creates and returns a pointer (ppObj) to the IJCone interface of a bounded
partial Cone3d. This method takes as input a base center point, axis, base starting point, base ending point, and a top
radius.
The cone follows the right-hand rule about the axis.
The axis vector must contain the height of the cylinder.
The base ellipse must not be degenerate, so the base center point cannot be the same as the base starting point.
To create a point cone, set the top radius length to zero.
Syntax
159
pConnection Unknown Required. This argument is a pointer to IUnknown. It creates a transient object.
CenterBx double Required. This argument is the X-coordinate of the base center point. The type is double.
CenterBy double Required. This argument is the Y-coordinate of the base center point. The type is double.
CenterBz double Required. This argument is the Z-coordinate of the base center point. The type is double.
AxisVx double Required. This argument is the X-coordinate of a point on the axis vector. The type is double.
AxisVy double Required. This argument is the Y-coordinate of a point on the axis vector. The type is double.
AxisVz double Required. This argument is the Z-coordinate of a point on the axis vector. The type is double.
RadiusT double Required. This argument is the top radius value. The type is double.
StartBx
StartB x double Required. This argument is the X-coordinate of the base starting point. The type is double.
StartBy
StartB y double Required. This argument is the Y-coordinate of the base starting point. The type is double.
StartBzz
StartB double Required. This argument is the Z-coordinate of the base starting point. The type is double.
EndBx double Required. This argument is the X-coordinate of the base ending point. The type is double.
EndBy double Required. This argument is the Y-coordinate of the base ending point. The type is double.
EndBz double Required. This argument is the Z-coordinate of the base ending point. The type is double.
Solid Boolean Required. This argument is a Boolean flag indicating whether the cone is solid or not.
CreateByCenterNormalMajAxisRatio
CreateByCenterNormalMajAxisRatioAngle
Angle Method
Description
The CreateByCenterNormalMajAxisRatioAngle method creates and returns an EllipticalArc3d object given a center
point, normal axis, major axis containing length, minor/major ratio, start angle, and sweep angle (angles in radians).
Syntax
object.CreateByCenterNormalMajAxisRatioAngle (pConnection, CenterX, CenterY, CenterZ, NormalX, NormalY,
NormalZ, MajorX,
MajorX, MajorY
MajorY,, MajorZ, MMRa
MMRatio,
tio, StartAngle
StartAngle,, Sw
SwAngle)
Angle)
Parameter Data Type Descriptio
Description
n
pConnection Unknown Required. This argument is a pointer to IUnknown. It creates a transient object.
CenterX double Required. This argument is the X-coordinate of the center point. The type is double.
CenterY double Required. This argument is the Y-coordinate of the center point. The type is double.
CenterZ double Required. This argument is the Z-coordinate of the center point. The type is double.
NormalX double Required. This argument is the X-coordinate of a point on the normal vector. The type is double.
NormalY double Required. This argument is the Y-coordinate of a point on the normal vector. The type is double.
NormalZ double Required. This argument is the Z-coordinate of a point on the normal vector. The type is double.
160
MajorX double Required. This argument is the X-coordinate of a point on the major axis vector. The type is double.
MajorY double Required. This argument is the Y-coordinate of a point on the major axis vector. The type is double.
MajorZ double Required. This argument is the Z-coordinate of a point on the major axis vector. The type is double.
MMRatio double Required. This argument is the minor axis to major axis ratio. The type is double.
StartAngle double Required. This argument is the start angle in radians. The type is double.
SwAngle double Required. This argument is the sweep angle in radians. The type is double.
CreateByCenterNormalRadius
CreateByCenterNormalRadius Method
Description
The CreateByCenterNormalRadius method creates and returns a pointer (ppObj) to an IJCircle interface of a
Circle3d object, given the center, normal unit vector, and radius.
Syntax
object.CreateByCenterNormalRadius (pConnection, CenterX, CenterY, CenterZ, NormalX, NormalY, NormalZ,
Radius)
CenterX double Required. This argument is the X-coordinate of the center of the circle. The type is double.
CenterY double Required. This argument is the Y-coordinate of the center of the circle. The type is double.
CenterZ double Required. This argument is the Z-coordinate of the center of the circle. The type is double.
NormalX double Required. This argument is the X-coordinate of a point on the normal vector. The type is double.
NormalY double Required. This argument is the Y-coordinate of a point on the normal vector. The type is double.
NormalZ double Required. This argument is the Z-coordinate of a point on the normal vector. The type is double.
Radius double Required. This argument is the radius of the circle. The type is double.
CreateByCenterNormMajAxisRatio
CreateByCenterNormMajAxisRatio Method
Description
The CreateByCenterNormMajAxisRatio method creates and returns a pointer (ppObj) to the IJEllipse interface of an
Ellipse3d object, given a center point, normal axis, major axis containing length, and minor/major ratio.
Syntax
object.CreateByCenterNormMajAxisRatio (pConnection, CenterX, CenterY, CenterZ, NormalX, NormalY, NormalZ,
MajorX, MajorY,
MajorY, MajorZ, MM
MMRatio)
Ratio)
Parameter Data Type Descriptio
Description
n
pConnection Unknown Required. This argument is a pointer to IUnknown. It creates a transient object.
CenterX double Required. This argument is the X-coordinate of the center point. The type is double.
CenterY double Required. This argument is the Y-coordinate of the center point. The type is double.
161
CenterZ double Required. This argument is the Z-coordinate of the center point. The type is double.
NormalX double Required. This argument is the X-coordinate of a point on the normal vector. The type is double.
NormalY double Required. This argument is the Y-coordinate of a point on the normal vector. The type is double.
NormalZ double Required. This argument is the Z-coordinate of a point on the normal vector. The type is double.
MajorX double Required. This argument is the X-coordinate of a point on the major axis vector. The type is double.
MajorY double Required. This argument is the Y-coordinate of a point on the major axis vector. The type is double.
MajorZ double Required. This argument is the Z-coordinate of a point on the major axis vector. The type is double.
MMRatio double Required. This argument is the minor axis to major axis ratio. The type is double.
CreateByCenterRadius
CreateByCenterRadius Method
Description
The CreateByCenterRadius method creates and returns a pointer (ppObj) to the IJSphere interface of a Sphere3d
object, based on a center point and a radius.
Syntax
object.CreateByCenterRadius (pConnection, CenterX, CenterY, CenterZ, Radius, Solid)
Parameter Data Type Descriptio
Description
n
pConnection Unknown Required. This argument is a pointer to IUnknown. It creates a transient object.
CenterX double Required. This argument is the X-coordinate of the center point. The type is double.
CenterY double Required. This argument is the Y-coordinate of the center point. The type is double.
CenterZ double Required. This argument is the Z-coordinate of the center point. The type is double.
Radius double Required. This argument is the length of the radius. The type is double.
Solid Boolean Required. This argument is a Boolean flag indicating whether or not the sphere is solid.
CreateByCenterStartEnd Method
Description
The CreateByCenterStartEnd method creates an Arc3d object according to the specified inputs.
The center and start coordinates define the radius. A non-colinear ending point defines the sweep angle and plane
(this returns an arc between 0 and P1).
Syntax
object.CreateByCenterStartEnd (pConnection, CenterX, CenterY, CenterZ, StartX, StartY, StartZ, EndX, EndY,
EndZ)
Parameter Data Type Descriptio
Description
n
pConnection Unknown Required. This argument is a pointer to IUnknown. It creates a transient object.
CenterX double Required. This argument is the X-coordinate for the center point on the arc. The type is double.
CenterY double Required. This argument is the Y-coordinate for the center point on the arc. The type is double.
162
CenterZ double Required. This argument is the Z-coordinate for the center point on the arc. The type is double.
StartX double Required. This argument is the X-coordinate for the starting point on the arc. The type is double.
StartY double Required. This argument is the Y-coordinate for the starting point on the arc. The type is double.
StartZ double Required. This argument is the X-coordinate for the starting point on the arc. The type is double.
EndX double Required. This argument is the X-coordinate for the ending point on the arc. The type is double.
EndY double Required. This argument is the Y-coordinate for the ending point on the arc. The type is double.
EndZ double Required. This argument is the Z-coordinate for the ending point on the arc. The type is double.
CreateByComplexString
CreateByComplexString Method
Description
The CreateByComplexString method creates and returns a pointer (ppObject) to the interface of a BSplineCurve3d
object. This method works by converting an input complex string.
Syntax
object.CreateByComplexString (pConnection
(pConnection,, pCS)
Parameterr
Paramete Data Type Description
pConnection Unknown Required. This argument is a pointer to IUnknown. It creates a transient object.
pCS IJComplexS
IJComplexString
tring Required. This argument is a pointer to IJComplexStri
IJComplexString.
ng.
CreateByCtrNormStartEnd
CreateByCtrNormStartEnd Method
Description
The CreateByCtrNormStartEnd method creates and returns an Arc3d object given the center, normal vector, start
and end points, radius, and direction.
Syntax
object.CreateByCtrNormStartEnd (pConnection, CenterX, CenterY, CenterZ, NormalX, NormalY, NormalZ, StartX,
StartY, StartZ, EndX, EndY, EndZ)
Parameterr
Paramete Data Type Description
pConnection Unknown Required. This argument is a pointer to IUnknown. It creates a transient object.
CenterX double Required. This argument is the X-coordinate for the center point of the arc. The type is double.
CenterY double Required. This argument is the Y-coordinate for the center point of the arc. The type is double.
CenterZ double Required. This argument is the Z-coordinate for the center point of the arc. The type is double.
NormalX double Required. This argument is the X-coordinate for a point on the normal vector. The type is double.
NormalY double Required. This argument is the Y-coordinate for a point on the normal vector. The type is double.
NormalZ double Required. This argument is the Z-coordinate for a point on the normal vector. The type is double.
StartX double Required. This argument is the X-coordinate for the starting point on the arc.The type is double.
StartY double Required. This argument is the Y-coordinate for the starting point on the arc. The type is double.
163
StartZ double Required. This argument is the Z-coordinate for the starting point on the arc. The type is double.
EndX double Required. This argument is the X-coordinate for the ending point on the arc. The type is double.
EndY double Required. This argument is the Y-coordinate for the ending point on the arc. The type is double.
EndZ double Required. This argument is the Z-coordinate for the ending point on the arc. The type is double.
Description
The CreateByCurve method creates and returns a pointer (ppObj) to the IJProjection interface of a Projection3d
object based on a planar curve, direction, and length.
Syntax
object.CreateByCurve (pConnection, CurveObject, uvX, uvY, uvZ, Length, Capped)
Parameterr
Paramete Data Type Description
pConnection Unknown Required. This argument is a pointer to IUnknown. It creates a transient object.
CurveObject
CurveObje ct Object Required. This argument is the IDispatch interfa
interface
ce of the planar curve.
uvX double Required. This argument is the X-coordinate of the point along the curve in the plane. The type is
double.
uvY double Required. This argument is the Y-coordinate of the point along the curve in the plane. The type is
double.
uvZ double Required. This argument is the Z-coordinate of the point along the curve in the plane. The type is
double.
Length double Required. This argument is the length of the projection in the direction of the point. The type is
double.
Capped Boolean Required. This argument is a Boolean flag indicating whether or not the object is capped.
Description
The CreateByCurve method creates and returns a pointer (ppObj) to the IJRevolution interface of a Revolution3d
object based on a curve to revolve, an axis vector, and a point on the axis.
Syntax
object.CreateByCurve (pConnection, CurveObject, AxisX, AxisY, AxisZ, CenterX, CenterY, CenterZ, SwAngle,
Capped)
Parameterr
Paramete Data Type Description
pConnection Unknown Required. This argument is a pointer to IUnknown. It creates a transient object.
CurveObject
CurveObje ct Object Required. This argument is the IDispatch interfa
interface
ce of the planar curve.
AxisX double Required. This argument is the X-coordinate of a point on the axis vector. The type is double.
AxisY double Required. This argument is the Y-coordinate of a point on the axis vector. The type is double.
AxisZ double Required. This argument is the Z-coordinate of a point on the axis vector. The type is double.
164
CenterX double Required. This argument is the X-coordinate of the center point on the axis. The type is double.
CenterY double Required. This argument is the Y-coordinate of the center point on the axis. The type is double.
CenterZ double Required. This argument is the Z-coordinate of the center point on the axis. The type is double.
SwAngle double Required. This argument is the sweep angle in radians. The type is double.
Capped Boolean Required. This argument is a Boolean flag indicating whether or not the object is capped. If
capped, then the result is either a closed planar curve revolved partially or an open planar curve
revolved fully.
Description
The CreateByCurves method creates and returns a pointer (ppObj) to the IJComplexString interface of a
ComplexString3d object. The input to this method is an array of Curves. Allowable open curve types include
Line3d, Arc3d, EllipticalArc3d, LineString3d, ComplexString3d, and BsplineCurve3d.
Syntax
object.CreateByCurves (pConnection, pIJCurveElements)
pIJCurveElements)
Parameterr
Paramete Data Type Description
pConnection Unknown Required. This argument is a pointer to IUnknown. It creates a transient object.
pIJCurveElements
pIJCurveEl ements IJElement
IJElementss Required. This argument is a pointer to the first element in an array of Curves.
Description
The CreateByCurves method creates and returns a pointer (ppObj) to the IJRuled interface of a RuledSurface3d
object based on a base curve and a top curve.
Syntax
object.CreateByCurves (pConnection, CurveObjectBase, CurveObjectTop, Capped)
Parameter Data Type Descriptio
Description
n
pConnection Unknown Required. This argument is a pointer to IUnknown. It creates a transient object.
CurveObjectBase
CurveObje ctBase Object Required. This argument is the IDispatch interfa
interface
ce of the base planar curve.
CurveObjectTop
CurveObje ctTop Object Required. This argument is the IDispatch interfa
interface
ce of the top planar curve. The type is double.
Capped Boolean Required. This argument is a Boolean flag indicating whether or not the object is capped.
If capped, then the result is either two closed planar curves or one degenerate and the
other closed and planar.
CreateByFitCurvee Method
CreateByFitCurv
Description
The CreateByFitCurve method creates and returns a pointer (ppObj) to the interface of a BSplineCurve3d object.
This method works by direct fitting a set of points.
The start and end tangent constraints are optional. These constraints should be set to 0.0 if they are not needed.
The Order property determines the relative accuracy of the poles with regard to the points that are entered to create
the curve. The order returned evaluat
evaluates
es as a polynomial
polynomial degree plus one. For example, an order
order of 4 defines cubic.
165
Since it is more efficient to use even-order b-spline curves, the number of poles (and knots) are maximized by
increasing the order to the next even number.
Syntax
object.CreateByFitCurve (pConnection, Order, PointCount, Points, Start_vX, Start_vY, Start_vZ, End_vX,
End _vX, End_vY,
End_vZ, Closed, periodic)
Parameterr
Paramete Data Type Description
pConnection Unknown Required. This argument is a pointer to IUnknown. It creates a transient object.
Order long Required. This argument is the order of the curve. The type is long.
PointCount long Required. This argument is the number of points along the curve. The type is long.
Points double Required. This argument is a SAFEARRAY of points along the curve. The type is double.
Start_vX
Start_ vX double Required. This argument is the X-coordinate for the starting point of the curve. The type is double.
Start_vY
Start_ vY double Required. This argument is the Y-coordinate for the starting point of the curve. The type is double.
Start_vZ
Start_ vZ double Required. This argument is the Z-coordinate for the starting point of the curve. The type is double.
End_vX double Required. This argument is the X-coordinate for the ending point of the curve. The type is double.
End_vY double Required. This argument is the Y-coordinate for the ending point of the curve. The type is double.
End_vZ double Required. This argument is the Z-coordinate for the ending point of the curve. The type is double.
Closed Boolean Required. This argument is a Boolean flag that specifies whether or not the curve is closed.
periodic Boolean Required. This argument is a Boolean flag that specifies whether or not the curve is periodic.
CreateByFitSurface Method
Description
The CreateByFitSurface method creates and returns a pointer (ppObj) to an interface for a BSplineSurface3d object.
This method does a direct fit of a B-spline surface through a set of points. The points are ordered (as surface poles
are) in the u-direction by v-direction.
Syntax
object.CreateByFitSurface (pConnection, vNumPoints, uNumPoints, Points, uOrder, vOrder, uClosedForm,
vClosedForm)
Parameterr
Paramete Data Type Description
pConnection Unknown Required. This argument is a pointer to IUnknown. It creates a transient object.
vNumPoints long Required. This argument is a SAFEARRAY of the v-number of points along the surface. The type
is double.
uNumPoints double Required. This argument is a SAFEARRAY of the u-number of points along the surface. The type
is double.
Points double Required. This argument is a SAFEARRAY of points along the surface. The type is double.
uOrder long Required. This argument is the u order of the surface, which must be greater than 1. The type is
long.
166
vOrder long Required. This argument is the v-order of the surface, which must be greater than 1. The type is
long.
uClosedForm
uClosedF orm long Required. This argument specifies the smoothness at the start and end of a closed B-spline surface
in the u-direction. The type is long. If 0: no smoothness requirements, 1: closed with tangent
continuity (no tangents input) (this value is not currently supported), 2: closed and periodic.
vClosedForm long Required. This argument specifies the smoothness at the start and end of a closed B-spline surface
in the v-direction. The type is long. If 0: no smoothness requirements, 1: closed with tangent
continuity (no tangents input) (this value is not currently supported), 2: closed and periodic.
CreateByLeastSquareFitCurve
CreateByLeastSquareFitCurve Method
Description
The CreateByLeastSquareFitCurve method creates and returns a pointer (ppObj) to the interface of a
BSplineCurve3d object. This method fits a set of points using least squares.
The start and end tangent constraints are optional. You should set these constraints to 0.0 if they are not needed.
Syntax
object.CreateByLeastSquareFitCurve (pConnection, Order, PointCount, Points, Start_vX, Start_vY, Start_vZ,
End_vX, End_vY, End_vZ, Clos
Closed,
ed, periodic, opt,
opt, nseg, tol)
Parameterr
Paramete Data Type Description
pConnection Unknown Required. This argument is a pointer to IUnknown. It creates a transient object.
Order long Required. This argument specifies the order of the curve. The type is long.
PointCount long Required. This argument is the number of points along the curve. The type is long.
Points double Required. This argument is a SAFEARRAY of points along the curve. The type is double.
Start_vX
Start_ vX double Required. This argument is the X-coordinate for the starting point of the curve. The type is double.
Start_vY
Start_ vY double Required. This argument is the Y-coordinate for the starting point of the curve. The type is double.
Start_vZ
Start_ vZ double Required. This argument is the Z-coordinate for the starting point of the curve. The type is double.
End_vX double Required. This argument is the X-coordinate for the ending point of the curve. The type is double.
End_vY double Required. This argument is the Y-coordinate for the ending point of the curve. The type is double.
End_vZ double Required. This argument is the Z-coordinate for the ending point of the curve. The type is double.
Closed Boolean Required. This argument is a Boolean flag that specifies whether or not the curve is closed.
periodic Boolean Required. This argument is a Boolean flag that specifies whether or not the curve is periodic.
opt Boolean Required. This argument is an option that specifies the fit of the curve. Its type is Boolean. If this
option is 0, it means fit within the given tolerance; if it is 1, it means fit with the given number of
segments.
nseg long Required. This argument is the number of segments used in the fitting, if opt=1. The type is long.
tol double Required. This argument is the tolerance used in the fitting, if opt = 0. The type is double.
167
CreateByLeastSquareFitSurface
CreateByLeastSquareFitSurface Method
Description
The CreateByLeastSquareFitSurface method creates and returns a pointer (ppObj) to an interface for a a
BSplineSurface3d object. This method does a least square fit of a B-spline surface through a set of points. The
points are ordered (as surface poles are) in the u-direction by v-direction.
Syntax
object.CreateByLeastSquareFitSurface (pConnection, vNumPoints, uNumPoints, Points, uOrder, vOrder, uPeriodic,
vPeriodic, uNseg, vNseg)
Parameterr
Paramete Data Type Description
pConnection Unknown Required. This argument is a pointer to IUnknown. It creates a transient object.
vNumPoints long Required. This argument is a SAFEARRAY of the v-number of points along the surface. The type
is double.
uNumPoints double Required. This argument is a SAFEARRAY of the u-number of points along the surface. The type
is double.
Points double Required. This argument is a SAFEARRAY of points along the surface. The type is double.
vOrder long Required. This argument is the v-order of the surface, which must be greater than 1. The type is
long.
uPeriodic Boolean Required. This argument is a Boolean flag that specifies whether or not the surface is periodic in u.
vPeriodic Boolean Required. This argument is a Boolean flag that specifies whether the surface is periodic in v.
uNseg long Required. This argument is the number of segments in u. The type is long.
vNseg long Required. This argument is the number of segments in v. The type is long.
CreateByOffset Method
Description
The CreateByOffset method creates and returns an offset curve.
Syntax
object.CreateByOffset (pConnection, Obj, DPtx, DPty, DPtz, OffsetDist, code)
Parameterr
Paramete Data Type Description
pConnection Unknown Required. This argument is a pointer to IUnknown. It creates a transient object.
Obj Object Required. This argument is the curve to offset. The type is Object.
DPtx double Required. This argument is the vector component in the X-directi
X-direction.
on. The type is double.
DPty double Required. This argument is the vector component in the Y-directi
Y-direction.
on. The type is double.
DPtz double Required. This argument is the vector component in the Z-directi
Z-direction.
on. The type is double.
OffsetDist
OffsetDi st double Required. This argument is the distance for the offset. The type is double.
168
code Int Required. This argument is an integer that describes the offset curve. Possible values are: 0 -
extend; 1 - fillet.
CreateByOuterBdry
CreateByOuterBdry Method
Description
The CreateByOuterBdry method creates and returns a pointer (ppObj) to the IJPlane interface of an infinite Plane3d
object, based on a point and a normal.
Syntax
object.CreateByOuterBdry (pConnection, CurveObject)
Parameterr
Paramete Data Type Description
pConnection Unknown Required. This argument is a pointer to IUnknown. It creates a transient object.
CurveObject
CurveObje ct Object Required. This argument is the IDispatch interfa ce of the planar curve.
Description
The CreateByParameters method creates and returns a pointer (ppObj) to the interface of a BSplineCurve3d object.
This method uses order, poles, weights, and knots. The weights and knots are optional; they should be set to NULL
if not needed.
If the order is equal to the number of poles, the curve evolves into the control polygon of a Bezier curve.
B-spline weights can be considered a gravitational type force with the magnitude of the weight equal to the pulling
force. The weights are always
always normalized. If no weights are present, the cucurve
rve is considered to be non-rational and
may be NULL. Non-rational curves have weights with a value value of 1.
The B-spline knots define the parameterization of the curve, and they may be periodic. Knots, also known as knot
vectors, must be monotonic and strictly
strictly increasin
increasing.
g. Monotonic refers to the successive terms as non-decreas
non-decreasing
ing or
non-increasing.
The Order property determines the relative accuracy of the poles with regard to the points that are entered to create
the curve. The order returned evaluat
evaluateses as a polynomial
polynomial degree plus one. For example, an order
order of 4 defines cubic.
Since it is more efficient to use even-order b-spline curves, the number of poles (and knots) are maximized by
increasing the order to the next even number.
Syntax
object.CreateByParameters(pConnection, Order, PoleCount, Poles, Weights, Knots, periodic)
Parameterr
Paramete Data Type Description
pConnection Unknown Required. This argument is a pointer to IUnknown. It creates a transient object.
Order long Required. This argument specifies the order of the curve. The type is long.
PoleCount long Required. This argument is the number of poles. The type is long.
Poles double Required. This argument is a SAFEARRAY of poles. The type is double.
Weights double Required. This argument is a SAFEARRAY of weights. The type is double.
Knots double Required. This argument is a SAFEARRAY of knots. The type is double. Generally, this value is
the number of poles plus the order value.
periodic Boolean Required. This argument is a Boolean flag that specifies whether or not the curve is periodic.
169
Description
The CreateByParameters method creates and returns a pointer (ppObj) to an interface for a BSplineSurface3d object
based on the desired order and a set of poles (weights and knots are optional).
If periodic knots are passed in, but periodic is set to False, the knots will be converted to multiple end knots.
The outward normal is generally U cross V, but if the reverse normal is desired, set ReverseNor to True.
The poles are ordered in the u-direction by v-direction. Weights and knots are optional. The number of poles (u or v)
must be greater than or equal to the order in that direction.
Syntax
object.CreateByParameters(pConnection, uNumPoles, vNumPoles, Poles, Weights, uOrder, vOrder, uKnots, vKnots,
uPeriodic, vPeriodic, ReverseNor)
Parameterr
Paramete Data Type Description
pConnection Unknown Required. This argument is a pointer to IUnknown. It creates a transient object.
uNumPoles long Required. This argument is the number of poles in the u-direction. The type is long.
vNumPoles long Required. This argument is the number of poles in the v-direction. The type is long.
Poles double Required. This argument is a SAFEARRAY of poles. The type is double.
Weights double Required. This argument is a SAFEARRAY of weights. The type is double.
uOrder long Required. This argument is the u-order of the surface, which must be greater than 1. The type is
long.
vOrder long Required. This argument is the v-order of the surface, which must be greater than 1. The type is
long.
uKnots double Required. This argument is a SAFEARRAY of knots. The type is double.
vKnots double Required. This argument is a SAFEARRAY of knots. The type is double.
uPeriodic Boolean Required. This argument is a Boolean flag that specifies whether the surface is periodic in u.
vPeriodic Boolean Required. This argument is a Boolean flag that specifies whether the surface is periodic in v.
ReverseNor
Reverse Nor Boolean Required. This argument is a Boolean flag that specifies whether or not the direction of the normal
is reversed.
CreateByPartOfCurve
CreateByPartOfCurve Method
Description
The CreateByPartOfCurve method creates and returns a part of the input curve.
Note: It is possible to cross the seam.
Syntax
object.CreateByPartOfCurve (pConnection, Obj, startPar, dirPar, endPar)
Parameterr
Paramete Data Type Description
pConnection Unknown Required. This argument is a pointer to IUnknown. It creates a transient object.
Obj Object Required. This argument is the IDispatch interfa ce of the top planar curve.
startParr
startPa double Required. This argument is the start of the part of the curve.
170
dirPar double Required. This argument is a point as the direction of the part of the curve that is retur
returned.
ned.
endPar double Required. This argument is the end of the part of the curve.
CreateByPoint Method
Description
The CreateByPoint method creates and returns an interface for a Point3d object, given X-, Y- and Z-coordinates.
Syntax
object.CreateByPoint (pConnection, x, y, z)
Parameterr
Paramete Data Type Description
pConnection Unknown Required. This argument is a pointer to IUnknown. It creates a transient object.
CreateByPointNormal
CreateByPointNormal Method
Description
The CreateByPointNormal method creates and returns a pointer (ppObj) to the IJPlane interface of an infinite
Plane3d object, based on a point and a normal.
Syntax
object.CreateByPointNormal (pConnection, PointX, PointY, PointZ, NormalX, NormalY, NormalZ)
Parameterr
Paramete Data Type Description
pConnection Unknown Required. This argument is a pointer to IUnknown. It creates a transient object.
PointX double Required. This argument is the X-coordinate of the point. The type is double.
PointY double Required. This argument is the Y-coordinate of the point. The type is double.
PointZ double Required. This argument is the Z-coordinate of the point. The type is double.
NormalX double Required. This argument is the X-coordinate of a point on the normal. The type is double.
NormalY double Required. This argument is the Y-coordinate of a point on the normal. The type is double.
NormalZ double Required. This argument is the Z-coordinate of a point on the normal. The type is double.
CreateByPoints Method
Description
The CreateByPoints method creates and returns a pointer (ppObj) to the interface of a LineString3d object. This
method takes as input an array of points. The array is a one-dimensional array of doubles containing the X-, Y-, and
Z-coordinates of the vertex points.
Syntax
object.CreateByPoints (pConnection, PointCount, Points)
171
Parameterr
Paramete Data Type Description
pConnection Unknown Required. This argument is a pointer to IUnknown. It creates a transient object.
PointCount long Required. This argument is the number of points in the array. The type is long.
Points double Required. This argument is a SAFEARRAY of points. The type is double.
CreateByPtVectLength
CreateByPtVectLength Method
Description
The CreateByPtVectLength method creates and returns a Line3d object, given the starting point, direction vector,
and length.
Syntax
object.CreateByPtVectLength (pConnection, StartX,
StartX, StartY, StartZ, uvX, uvY, uvZ, Length)
Parameterr
Paramete Data Type Description
pConnection Unknown Required. This argument is a pointer to IUnknown. It creates a transient object.
StartX double Required. This argument is the X-coordinate for the starting point. The type is double.
StartY double Required. This argument is the Y-coordinate for the starting point. The type is double.
StartZ double Required. This argument is the Z-coordinate for the starting point. The type is double.
uvX double Required. This argument is the X-coordinate for the ending point. The type is double.
uvY double Required. This argument is the Y-coordinate for the ending point. The type is double.
uvZ double Required. This argument is the Z-coordinate for the ending point. The type is double.
Length double Required. This argument is the length of the line from the starting point. The type is double.
CreateBySingleSweepWCaps
CreateBySingleSweepWCaps Method
Description
The CreateBySingleSweepWCaps method creates a collection of swept surfaces with the option of caps. The output
is surfaces, and then caps.
Syntax
object.CreateBySingleSweepWCaps (pConnection, TrObj, CsObj, cornerOpt, BrkCv, StartOpt, StNorm,
St Norm, EdNorm,
WCaps, numCaps)
Parameterr
Paramete Data Type Descri
Description
ption
pConnection Unknown Required. This argument is a pointer to IUnknown. It creates a transient object.
TrObj Object Required. This argument is the trace curve. The type is Object.
CsObj Object Required. This object is the cross section curve or curve to sweep. It can be one curve,
or it can be a plane object that contains boundary curves, where the boundary curves
are each swept to make a separate surface; the first boundary of the plane is always the
region, and any following boundaries are holes. The type for CsObj is Object.
cornerOpt SkinningCorne
SkinningCornerOptions
rOptions Required. This argument is an option on how to handle trace curves that are line
strings. If the value is 0, the method averages the left/right tangent to get the plane for
172
placing the cross section. If the value is 1, the method turns around the trace cusp with
an arc.
BrkCv SkinningBrea
SkinningBreakOptions
kOptions Required. This argument specifies whether or not the curves have breaks. Possible
values include: 0 - No breaks. 1 - If the cross is a GComplexString, then break and
create separate surfaces. 2 - If the trace is a GComplexString, then break and create
separate surfaces. 3 - Break cross and trace.
StartOpt SkinningCros
SkinningCrossSectionStart
sSectionStart Required. This argument is the starting option. Possible values are: 0 - No breaks; 1 -
If the cross is a GComplexString, then break and create separate surfaces; 2 - If the
trace is a GComplexString, then break and create separate surfaces; 3 - Break cross
and trace.
EdNorm double Required. This argument specifies the ending normal. It is a SAFEARRAY of type
double.
WCaps Boolean Required. This argument is a Boolean flag that specifies whether or not the surfaces
have caps. If the value is False, there are no caps; if the value is True, there are caps.
numCaps Int Required. This argument is the number of caps. The type is integer.
CreateBySkinning Method
Description
The CreateBySkinning method creates a skinned surface with the option of caps. The output is caps and the skin
surface.
Syntax
object.CreateBySkinning (pConnection
(pConnection,, pTrElements
pTrElements,, pCsElements, WCaps)
Parameterr
Paramete Data Type Description
pConnection Unknown Required. This argument is a pointer to IUnknown. It creates a transient object.
pTrElements
pTrEleme nts IJElement
IJElementss Required. This argument is a pointer to the trace curves (can be more than 1). If there is one trace
only, the trace curve does not have to touch the cross section, but must cross the plane containing
the cross section. If there is more than one trace, then the trace curves must touch the cross sections.
pCsElementss
pCsElement IJElement
IJElementss Required. This argument is a pointer to the cross section curves The value can be more than 1.
Cross sections are placed exactly how they are to be skinned.
WCaps Int Required. This argument is a Boolean flag that specifies whether or not the object has caps. If the
value is False, there are no caps; if True, there are caps.
CreateConeBy4PtsWCaps
CreateConeBy4PtsWCaps Method
Description
The CreateConeBy4PtsWCaps method creates and returns a bounded Cone3d object based on four points - base
center point, top center point, base starting point, and top starting point. Caps are optional. The output is the surface,
and then caps.
Syntax
object.CreateConeBy4PtsWCaps (pConnection, CenterBx, CenterBy, CenterBz, CenterTx, CenterTy, CenterTz,
StartBx, StartBy, StartBz, StartTx, StartTy, StartTz, Solid, WCaps, numCaps)
173
Parameterr
Paramete Data Type Description
pConnection Unknown Required. This argument is a pointer to IUnknown. It creates a transient object.
CenterBx double Required. This argument is the X-coordinate for the base ellipse center point. The type is double.
CenterBy double Required. This argument is the Y-coordinate for the base ellipse center point. The type is double.
CenterBz double Required. This argument is the Z-coordinate for the base ellipse center point. The type is double.
CenterTx double Required. This argument is the X-coordinate for the top ellipse center point. The type is double.
CenterTy double Required. This argument is the Y-coordinate for the top ellipse center point. The type is double.
CenterTz double Required. This argument is the Z-coordinate for the top ellipse center point. The type is double.
StartBx
StartB x double Required. This argument is the X-coordinate for the base ellipse starting point. The type is double.
StartBy
StartB y double Required. This argument is the Y-coordinate for the top ellipse starting point. The type is double.
StartBzz
StartB double Required. This argument is the Z-coordinate for the base ellipse starting point. The type is double.
StartTx double Required. This argument is the X-coordinate for the top ellipse starting point. The type is double.
StartTy
StartT y double Required. This argument is the Y-coordinate for the top ellipse starting point. The type is double.
StartTzz
StartT double Required. This argument is the Z-coordinate for the top ellipse starting point. The type is double.
Solid Boolean Required. This argument is a Boolean flag that specifies whether or not the object is solid. Possible
values are: 0 - Set normal as hollow; 1 - Set normal as solid; 2 - Set normal according to input
point; 3 - Toggle the outward normal (no checks).
WCaps Boolean Required. This argument is a Boolean flag that specifies whether or not the object has caps. If the
value is False, there are no caps; if True, there are caps.
numCaps Int Required. This argument is the number of caps. The type is integer.
CreateProjectionByCurveWCaps
CreateProjectionByCurveWCaps Method
Description
The CreateProjectionByCurveWCaps method creates a Projection3d object from a curve, direction, and length.
Valid curves are Line, Arc, Circle, Ellipse, EllipticalArc, LineString, ComplexString, and BSplineCurve. Caps are
optional. The output is the surface, and then the caps.
Syntax
object.CreateProjectionByCurveWCaps (pConnection, CurveObject, uvX, uvY, uvZ, Length, Solid, WCaps,
numCaps)
Parameterr
Paramete Data Type Description
pConnection Unknown Required. This argument is a pointer to IUnknown. It creates a transient object.
CurveObject
CurveObje ct Object Required. This argument is the curve to project. The type is Object.
uvX double Required. This argument is the X-coordinate of the point that specifies the vector. The type is
double.
uvY double Required. This argument is the Y-coordinate of the point that specifies the vector. The type is
double.
174
uvZ double Required. This argument is the Z-coordinate of the point that specifies the vector. The type is
double.
Length double Required. This argument is the projection distance. The type is double.
Solid Boolean Required. This argument is a Boolean flag that specifies whether or not the object is solid. Possible
values are: 0 - Set normal as hollow; 1 - Set normal as solid; 2 - Set normal according to input
point; 3 - Toggle the outward normal (no checks).
WCaps Boolean Required. This argument is a Boolean flag that specifies whether or not the object has caps. If the
value is False, there are no caps; if True, there are caps.
numCaps Int Required. This argument is the number of caps. The type is integer.
CreateRevolutionByCurveWCaps
CreateRevolutionByCurveWCaps Method
Description
The CreateRevolutionByCurveWCaps method creates a Revolution3d object from a curve, axis vector, point on
axis, and sweep angle (radians). Valid curves are Line, Arc, Circle, Ellipse, EllipticalArc, LineString,
ComplexString, and BSplineCurve. Caps are optional. Output is the surface, and then the caps.
Syntax
object.CreateRevolutionByCurveWCaps (pConnection, CurveObject, AxisX, AxisY, AxisZ, CenterX, CenterY,
CenterZ, SwAngle, Solid, WCaps, numCaps)
Parameterr
Paramete Data Type Description
pConnection Unknown Required. This argument is a pointer to IUnknown. It creates a transient object.
CurveObject
CurveObje ct Object Required. This argument is the curve from which to create the revolution. The type is Object.
AxisX double Required. This argument is the X-coordinate of the point that specifies the axis direction. The type
is double.
AxisY double Required. This argument is the Y-coordinate of the point that specifies the axis direction. The type
is double.
AxisZ double Required. This argument is the Z-coordinate of the point that specifies the axis direction. The type
is double.
CenterX double Required. This argument is the X-coordinate of the center point. The type is double.
CenterY double Required. This argument is the Y-coordinate of the center point. The type is double.
CenterZ double Required. This argument is the Z-coordinate of the center point. The type is double.
SwAngle double Required. This argument is the sweep angle. The type is double.
Solid Boolean Required. This argument is a Boolean flag that specifies whether or not the object is solid. Possible
values are: 0 - Set normal as hollow; 1 - Set normal as solid; 2 - Set normal according to input
point; 3 - Toggle the outward normal (no checks).
WCaps Boolean Required. This argument is a Boolean flag that specifies whether or not the object has caps. If the
value is False, there are no caps; if True, there are caps.
numCaps Int Required. This argument is the number of caps. The type is integer.
175
CreateRuledByCurvesWCaps
CreateRuledByCurvesWCaps Method
Description
The CreateRuledByCurvesWCaps method creates a RuledSurface3d object from a base curve and a top curve. Valid
curves are Line, Arc, Circle, Ellipse, EllipticalArc, LineString, ComplexString, and BSplineCurve. Caps are
optional. The output is the surface, and then the caps.
Syntax
object.CreateRuledByCurvesWCaps (pConnection, CurveObjectBase, CurveObjectTop,
CurveObjectTop, Solid, WCaps, numCaps)
Parameterr
Paramete Data Type Description
pConnection Unknown Required. This argument is a pointer to IUnknown. It creates a transient object.
CurveObjectBase
CurveObje ctBase Object Required. This argument is the base curve.
CurveObjectTop
CurveObje ctTop Object Required. This argument is the top curve.
Solid Boolean Required. This argument is a Boolean flag that specifies whether or not the object is solid. Possible
values are: 0 - Set normal as hollow; 1 - Set normal as solid; 2 - Set normal according to input
point; 3 - Toggle the outward normal (no checks).
WCaps Boolean Required. This argument is a Boolean flag that specifies whether or not the object has caps. If the
CreateTorusByAxisMajorMinorRadiu
CreateTorusByAxisMajorMinorRadiusSweepWCaps
sSweepWCaps Method
Description
The CreateTorusByAxisMajorMinorRadiusSweepWCaps method creates and returns a Tori3d (torus) object based
on an axis, a center point on the axis, the direction to the origin in UV space (orthogonal to the axis), a major radius,
and a minor radius. Caps are optional. The output is the surface, and then the caps.
Syntax
object.CreateTorusByAxisMajorMinorRadiusSweepWCaps (pConnection, AxisCenterX, AxisCenterY,
AxisCenterY, AxisCenterZ
AxisCenterZ,,
AxisVecX, AxisVecY,
AxisVecY, Axis
AxisVecZ,
VecZ, Ori
OriginDirX,
ginDirX, Orig
OriginDirY,
inDirY, Ori
OriginDirZ,
ginDirZ, MajorRa
MajorRadius,
dius, MinorRadi
MinorRadius,
us, SwAngle, So
Solid,
lid,
WCaps, numCaps)
Parameterr
Paramete Data Type Description
pConnection Unknown Required. This argument is a pointer to IUnknown. It creates a transient object.
AxisCenterX
AxisCenter X double Required. This argument is the X-coordinate of the axis center point. The type is double.
AxisCenterY
AxisCenter Y double Required. This argument is the Y-coordinate of the axis center point. The type is double.
AxisCenterZ
AxisCenter Z double Required. This argument is the Z-coordinate of the axis center point. The type is double.
AxisVecX double Required. This argument is the X-coordinate of the point that specifies the axis direction. The type
is double.
AxisVecY double Required. This argument is the Y-coordinate of the point that specifies the axis direction. The type
is double.
AxisVecZ double Required. This argument is the Z-coordinate of the point that specifies the axis direction. The type
is double.
OriginDirX
OriginDir X double Required. This argument is the X-coordinate of the point that specifies the origin direction. The
176
type is double.
OriginDirY
OriginDir Y double Required. This argument is the Y-coordinate of the point that specifies the origin direction. The
type is double.
OriginDirZ
OriginDir Z double Required. This argument is the Z-coordinate of the point that specifies the origin direction. The type
is double.
MajorRadius double Required. This argument is the major radius for the torus. The type is double.
MinorRadius double Required. This argument is the minor radius for the torus. The type is double.
SwAngle double Required. This argument is the sweep angle. The type is double.
Solid Boolean Required. This argument is a Boolean flag that specifies whether or not the object is solid. Possible
values are: 0 - Set normal as hollow; 1 - Set normal as solid; 2 - Set normal according to input
point; 3 - Toggle the outward normal (no checks).
WCaps Boolean Required. This argument is a Boolean flag that specifies whether or not the object has caps. If the
value is False, there are no caps; if True, there are caps.
numCaps Int Required. This argument is the number of caps. The type is integer.
The following section shows some examples on how to create some geometry components:
GeometryFactory.Ellipses3dCreateByCenterNormMajAxisRatio
Creates/returns an Ellipse given the center point, normal axis, major axis containing length, and
minor/major ratio.
Function Ellipses3d.CreateByCenterNormMajA
Ellipses3d.CreateByCenterNormMajAxisRatio(pConnectio
xisRatio(pConnection n As Unknown, CenterX As Double, CenterY As
Double, CenterZ As Double, Nor
NormalX
malX As D
Double,
ouble, NormalY As Double, Norm
NormalZ
alZ As Doubl
Double,
e, MajorX As Double,
MajorY As Double,
Double, MajorZ As Double, MM
MMRatio
Ratio As Doubl
Double)
e) As Ellipse3d
Ellipse3d
Example:
Dim ellipse As IngrGeom3D.Ell
IngrGeom3D.Ellipse3d
ipse3d
Dim circlePointVecX
circlePointVecX As Do
Double,
uble, circleP
circlePointVecY
ointVecY As Double, circlePointVecZ
circlePointVecZ As Double
177
Dim circleNormalX
circleNormalX As Double
Double,, circleNormalY As Double, circleNormalZ As Double
Dim projVecX As Double, projV
projVecY
ecY As Doub
Double,
le, projVecZ As Double
circleCenterX = 0#
circleCenterY = 0#
circleCenterZ = 0#
circleNormalX = 0#
circleNormalY = 0#
circleNormalZ = 1#
circlePointVecX
circlePointVe cX = 0#
circlePointVecY = diameter * 0.5
circlePointVecZ
circlePointVe cZ = 0#
axesRation 1.0
GeomFactory.Projections3d.CreateByCurve
Creates and returns a Projection3d based on a curve, direction and length. Valid curve objects are
Line, Arc, Circle, Ellipse, EllipticalArc, LineString, ComplexString, and BSplineCurve.
Function Projections3d.CreateByCurve(pConnect
Projections3d.CreateByCurve(pConnection
ion As Unknown, CurveObject As Object, projvecX As Double,
projvecY As Double,
Double, projvecZ As Double, Len
Length
gth As Double
Double,, Capped As Boolean) As Projection3d
Projection3d
Example:
Dim projection As IngrGeom3D
IngrGeom3D.Projection3d
.Projection3d
Dim projVecX As Double, projV
projVecY
ecY As Doub
Double,
le, projVecZ As Double
Dim length As Double
Double
178
projVecX = 0#
projVecY = 0#
projVecZ = 1#
projVecX, projVecY,
projVecY, projV
projVecZ,
ecZ, length, True)
179
GeomFactory.Planes3d.CreateByPoints
Creates and returns a bounded Plane3d based on 3 or more non-linear, coplanar points. The
points must be oriented such that the orientation of the points defines the normal(follows the
right hand rule).
Example:
Dim plane As IngrGeom3D.Pla
IngrGeom3D.Plane3d
ne3d
Dim Points(0
Points(0 To 11) As Double
Points(0) = MinX
Points(1) = MinY
Points(2) = 0#
Points(3) = MaxX
Points(4) = MinY
Points(5) = 0#
Points(6) = MaxX
Points(7) = MaxY
Points(8) = 0#
Points(9) = MinX
Points(10) = MaxY1
Points(11) = 0#
GeomFactory.Revolutions3d.CreateByCurve
Creates and returns a Revolution3d based on a curve to revolve, axis vector, point on axis and
sweep angle(radians).Valid curve objects are Line, Arc, Circle, Ellipse, EllipticalArc, LineString,
ComplexString, and BSplineCurve.
Example:
Dim axisCenterX
axisCenterX As Double, axisCenterY
axisCenterY As Double, axisC
axisCenterZ
enterZ As Double
Double
Dim axisVecX As Double, a
axisVecY
xisVecY As D
Double,
ouble, axisVecZ
axisVecZ As Double
Dim oRevolution
oRevolution As IngrGeom3D
IngrGeom3D.Revolution3d
.Revolution3d
axisCenterX = 0#
axisCenterY = 0#
axisCenterZ = 0#
axisVecX = 0#
axisVecY = 0#
axisVecZ = 1#
planePoints(0)
planePoints(0) = diameter / 2
planePoints(1) = 0
planePoints(1)
planePoints(2)
planePoints(2) = 0
planePoints(3)
planePoints(3) = diameter / 2 + dInsulationThi
dInsulationThickness
ckness
planePoints(4)
planePoints(4) = 0
planePoints(5) = 0
planePoints(5)
planePoints(6)
planePoints(6) = diameter / 2 + dInsulationThi
dInsulationThickness
ckness
planePoints(7)
planePoints(7) = 0
planePoints(8)
planePoints(8) = length
181
planePoints(9)
planePoints(9) = diameter / 2
planePoints(10) = 0
planePoints(10)
planePoints(11)
planePoints(11) = length
planePoints(12)
planePoints(12) = diameter / 2
planePoints(13)
planePoints(13) = 0
planePoints(14)
planePoints(14) = 0
NamingRulesHelper Object
This is the helper object that implements the IJDNamingRulesHelper interface to query the naming rules for an
object type, to create naming relations, and to query for the active naming rule. This is implemented in the middle
tier so that both application commands and business objects can use this implementation.
References
Object Library: Ingr Sp3d Generic NamingRules Helper 1.0
Interfaces
Interface Name lang Descripti
Description
on
IJDNamingRulesHelper vb/c This is the helper interface with the methods that can be used by application
applicati on
commands and business objects for defining naming rules for their objects.
IJDNamingRulesHelper
This is a helper interface that can be used to query the naming rules for an object type, to create naming relations,
and to query for the active naming rule. The functionality of this interface is accessed by adding a project reference
to the "Ingr Sp3d Generic NameRuleSemantics 1.0 Type Library".
This interface inherits from IDispatch.
When To Use
The Visual Basic® NamingRulesHelper Object implements all of the helper functions. This implementation can be
used as long as the applications are using the generic naming rules semantic.
Methods
183
Parameters:
[in] pDispEntity The IDispatch interface of the named object.
name is unique
indicates in the
the name domain specified by the user through the oFilter. True
is unique.
The optional arguments strIID and strAttribute Name are to be provided by the
users of this function. They are provided so as to give an option to the user to
specify the Interface and also the Attribute of the object on which the name
uniqueness has to be ensured.
Parameters:
[in] oEntity The IDispatch interface of the named object.
[in] oFilter The interface of the Filter to use in determining the uniqueness.
[in] strGenName The generated name string.
[in] strIID An optional IID as a string to help in making the determination. If the IID is
provided then strAttributeName has to be provided. Default value is null string.
[in] strAttributeName
strAttributeNam e An optional AttributeNam
AttributeNamee as a string to help in making the determination.
determinat ion. Default
value is null string.
Return error codes:
E_FILTER_NOT_SPECIFIED The Filter w
was
as not specified.
184
References
Object Library: Ingr SmartPlant 3D Attributes 1.0 Type Library
Interfaces
IJDAttributesCol
This interface is used to get information from an item or items in a collection of attributes.
This interface inherits from IDispatch.
When Tointerface
Call this Use when you want to:
Access an item of a collection of attributes.
Access all the items of a collection of attributes.
Count the items of a collection.
Get the metadata about a collection of attributes.
Properties
_EnumItem ( ) as LPUNKNOWN
Description:
Descripti on: Enumerates all the attributes of this collection by returning ppEnumUnk.
Modifiability: Read Only
Return error codes:
S_OK Operation succeeded.
E_FAIL Operation failed (no detail).
InterfaceInfo ( ) as IJDInterfaceInfo
Description:
Descripti on: IJDInterfaceInfo interface
Returns ppInfo, the IJDInterfaceInfo interface of an InterfaceInfo Object for
Object for this
collection.
Modifiability: Read Only
Return error codes:
S_OK Operation succeeded.
E_FAIL Operation failed (no detail).
185
Count ( ) as Long
Description:
Descripti on: Returns the number of attributes of this Collection.
Modifiability: Read Only
Return error codes:
S_OK Operation succeeded.
E_FAIL Operation failed (no detail).
IJDAttributes
This interface is used to get a CollectionOfAttributes property. This interface is implemented by any component that
is attributes-enabled and aggregates the AttributeHelper object.
When To Use
Call this interface when you want to access the CollectionOfAttributesproperty of an object.
Properties
Count ( ) as Long
Description:
Descripti on: Returns the number of collections of this object.
Modifiability: Read Only
Return error codes:
S_OK Operation succeeded.
E_FAIL Operation failed (no detail).
Attribute
The role of this object is to operate on one instantiated attribute. The Attribute object is returned by most of the
methods of the IJDAttributesCol interface.
References
Object Library: Ingr SmartPlant 3D Attributes 1.0 Type Library
Interfaces
186
When To Use
Call this interface when you want to:
Access the value of an attribute.
Get the metadata about an attribute.
Properties
Value ( ) as Variant
Description:
Descripti on: Allows you to get or set the value of an attribute. The method using this property is the
generic way to access the value of an attribute. It is not responsible to check and see if
the caller is allowed to write in this field. If one uses put_Value with Val.vt =
VT_NULL or VT_EMPTY, the attribute is removed from the database. For
Hierarchical Code Lists, if one uses put_Value with val.vt = VT_BSTR (implying that
the ShortString value has been passed), it is automatically converted to the ValueID
(val.vt = VT_I4). If one uses get_Value on a removed attribute, the returned variant
will have its vt flag set to VT_EMPTY. This confusion of the VT_EMPTY and
VT_NULL flag allows us to save database space. See the Specific Types Definition
Definition
below for the definitions.
Modifiability: Read/Write
Return error codes:
S_OK Operation succeeded.
E_FAIL Operation failed (no detail).
AttributeInfo ( ) as IJDAttributeInfo
Description:
Descripti on: Returns the IJDAttributeInfo
IJDAttributeInfo interface
interface of an AttributeInfo object
AttributeInfo object for this attribute.
Modifiability: Read Only
Return error codes:
S_OK Operation succeeded.
E_FAIL Operation failed (no detail).
Enum tagSQLTypes
SQL_VB_CHAR = 1 // CHAR, VARCHAR, DECIMAL, NUMERIC = VT_BSTR =
SQL_C_CHAR = SQL_CHAR
SQL_VB_LONG = 4 // long int = VT_I4 = SQL_C_LONG = SQL_INTEGER
SQL_VB_SHORT = 5 // shrt int = VT_I2 = SQL_C_SHORT = SQL_SMALLINT
SQL_VB_FLOAT = 7 // float = VT_R4 = SQL_C_FLOAT = SQL_REAL
SQL_VB_DOUBLE = 8 // double = VT_R8 = SQL_C_DOUBLE = SQL_DOUBLE
SQL_VB_BIT = -7 // boolean = VT_BOOL = SQL_C_BIT
SQL_VB_DATE = 9 // date = VT_DATE = SQL_C_DATE
End Enum
Note about tagSQLTypes : The type of the attribute is defined in the METADATALib in terms of SQL_C_Types.
The value of an attribute is a VARIANT. We use the correspondence table above. If the type of the VARIANT does
not match the VT type, we try to coerce it using MS API VariantChangeType. If the attribute is hard coded, the
coercion is done by the MS API invoke.
IJDCodeListMetaData
This interface is used to access the codelist metadata and is exported in the COM map of the business object that
aggregates the attribute helper. The method calls are delegated to the POM.
This interface inherits from IDispatch.
When To Use
Call this interface when you want to access the metadata about a codelist.
187
Properties
188
189
TableCollection ( ) as Unknown
Description:
Descripti on: Returns (pEnumCodeList as RetVal) the IUnknown interface of the first item of the
collection of tables. Gets an enumerated collection of CodeList tables.
Modifiability: Read Only
Return error codes:
S_OK Operation succeeded.
E_FAIL Operation failed (no detail).
Note: This API returns S_OK no matter if a TableCollection is reurned or not.
In the MS repository model of relationships, the Automation object CollectionHelper can be retrieved from any
component that is relationships-enabled by getting the CollectionRelations property of the interface that the
relationship is established to.
References
Object Library: Ingr SmartPlant 3D Relation 1.0 Type Library
Interfaces
IJDAssocRelation
This interface accesses the Collection of Relations in which a business object participates. It should be implemented
by any business object that is relationship-enabled.
The relationship types are defined between interfaces of the two participant objects, and that relationships are
gathered per homogenous collections. The Core uses this alternative accessor as an interface on the business object
where both the interface and the property are input arguments when asking for the collection. This interface inherits
from IDispatch.
When To Use
Call this interface when you want to access a collection of relationships on a business object.
Properties
IJDRelationshipCol
This is one of the two basic interfaces that collections of relationships should implement.
This interface inherits from IDispatch.
When To Use
Use this interface to manage the relationships that belong to a particular relationship collection. This includes the set
of relationships that:
Is of the same type.
Is attached to a particular source object.
191
Have objects playing the same role, have the same origin, or the same destination in the relationship.
With this interface, you can:
Get a count of the number of relationships in the collection.
Add and remove relationships to and from the collection.
If the collection is sequenced (which requires it to be an origin collection), place a relationship in a specific spot in
the collection sequence or modify the sequencing of the collection.
Retrieve a specific relationship from the collection.
Obtain information about the collection and the relation to which it is associated.
Methods
Insert ( byval TargetObject as Unknown , byval Index as Long , byval Name as String ) as IJDRelationship
Description:
Descripti on: Adds a relati
relationship
onship between the source object containing this collection of relati
relationships
onships
and the given target object. Returns the IJDRelationship interface (CreatedRelationship)
of the inserted relationship. If the business object is aggregating a RelationHelper
Object, this object is a RelationshipHelper Object. This method can only be used when
the origin side of the relation supports ordering.
Parameters:
[in] TargetObject Target object to be connected.
[in] Index Index of the new relationship.
relati onship.
[in] Name Name of the relati
relationship.
onship.
Return error codes:
S_OK Operation succeeded.
S_FAIL Operation failed (no detail).
IsSourceOrigin ( )
Description:
Descripti on: Returns if the source (i.e., the object that the collection has been retrieved from) is the
origin of the relationships contained by the collection.
Return error codes:
S_OK Source is origin in the relationships.
relati onships.
S_FALSE Source is destination in the relationships.
192
Refresh ( )
Description:
Descripti on: Refresh the collection with the current data from the database.
Return error codes:
S_OK Operation succeeded.
E_FAIL Operation failed (no detail).
Note: That method refresh
refreshss only a non associati
associative
ve collection. The method does nothing for an
associative relation.
Properties
Count ( ) as Long
Description:
Descripti on: Returns the count of relation
relationships.
ships.
Modifiability: Read Only
Return error codes:
S_OK Operation succeeded.
S_FAIL Operation failed (no detail).
193
Type ( ) as Variant
Description:
Descripti on: Returns the GUID identifying the relation
relati on to which the current collection is associated.
Then the interface IJRelationMetaData on the source of the collection permits access to
the complete meta-data information of this relation type.
Modifiability: Read Only
IJDTargetObjectCol
This is one of the two basic interfaces that collections of relationships should implement.
With this interface, you can:
When To Use
Use this interface to manage the objects that are the destination of a particular relationship collection. This is the set
of objects that are related to the source object (from which the current collection has been retrieved) by
relationships:
of the same type.
attached to this particular source object.
where the objects in the relationship play the same role, origin, or destination.
Methods
Add ( byval TargetObject as Unknown , byval Name as String , byval CreatedRelationship as IJDRelationship )
Description:
Descripti on: Adds a relati
relationship
onship between the source object containing this collection
of relationships and the given target object. Following the Repository
API, if the relationship is of the ordered type, the added relationship is
always added at the end of the existing ones.
Parameters:
194
Insert ( byval TargetObject as Unknown , byval Index as Long , byval Name as String , byval CreatedRelationship
as IJDRelationship )
Description:
Descripti on: Adds a relati
relationship
onship between the source object containing this collection of
relationships and the given target object. This method could only be used when the
origin side of the relationship supports ordering.
Parameters:
[in] TargetObject Target object to be connected.
[in] Index Index of the new relationship.
relati onship.
[in] Name Name of the relati
relationship.
onship.
[in] CreatedRelationship
CreatedRelat ionship Pointer to the created relationship. If the business object is aggregating a
IsSourceOrigin ( )
Description:
Descripti on: Returns if the source (i.e., the object that the collection has been retrieved from) is the
origin of the relationships contained by the collection.
Return error codes:
S_OK Source is origin in the relationships.
relati onships.
S_FALSE Source is destination in the relationships.
195
avoiding binding all target objects. This enumeration can be used in VB also (see code
example below).
Return error codes:
S_OK Operation succeeded.
S_FAIL Operation failed (no detail).
Properties
Count ( ) as Long
Description:
Descripti on: Returns the count of target entities.
Modifiability: Read Only
Return error codes:
S_OK Operation succeeded.
S_FAIL Operation failed (no detail).
Return
S_OK error codes: Operation succeeded.
S_FAIL Operation failed (no detail).
Source ( ) as Unknown
Description:
Descripti on: Returns the IUnknown interface of the source object.
Modifiability: Read Only
Return error codes:
S_OK Operation succeeded.
E_FAIL Operation failed (no detail).
Type ( ) as Variant
Description:
Descripti on: Returns the GUID identifying the relationship
relati onship with which the current collection is
associated. Then use the interface IJRelationMetaData on the source of the collection
to have access to the complete metadata information of this relation type.
Modifiability: Read Only
Return error codes:
S_OK Operation succeeded.
E_FAIL Operation failed (no detail).
196
197
Note: If this is the first time that you have invoked the tool, it begins reading your system to
generate a data file that contains information about all existing registered type libraries.
198
No matter how carefully you create your code, errors can occur. To handle these errors, you need
to add error-handling code to your procedures.
You perform
Visual the process
Basic provides of locating
several tools toand fixing
help bugshow
analyze in applications by debugging
your application operates. the code.
These
debugging tools are useful in locating the source of bugs, but you can also use the tools to
experiment with changes to your application or to learn how other applications work.
Note: You must add the TaskHost project to the integrated development environment (IDE)
before you can debug your Visual Basic project.
Before you can use the TaskHost project, you must set new paths in your computer's
environment variables. Click Start -> Settings -> Control Panel -> System. Select the Advanced
tab and then click Environment Variables. Finally add the following path statements according to
the location in which you installed the software:
Important
Do not stop the debug process by clicking the End command. If you end processing this way,
you will throw an exception, crash all the software that is running, and lose your changes.
To safely end processing, click File > Exit from the SmartPlant 3D TaskHost software.
199
Introduction:
This document describes the step-by-step procedure for creating cab files
Procedure:
3. Select the Package Folder. Select the symbol share folder. (The Cab file must be created in the
symbol share). Click Yes if it asks if we want to create the folder. Click Next.
Yes if
201
4. In the Missing Dependency Information dialog, do not check any of the dependency files. Click OK.
5. Next, uncheck all the files except the symbol dll file.
6. Next, let the File Source option be “Include in this cab”.
202
203