| Library | Package | Frames | Expand | Java Toolkit |
| Method Summary | |
|---|---|
| /*optional*/ Boolean | GetExploded
()
Get method for attribute "Exploded" true if the view should be an exploded view, null or false otherwise. |
| Point3D | GetLocation
()
Get method for attribute "Location" The location on the sheet where the view should be placed. |
| Transform3D | GetOrientation
()
Get method for attribute "Orientation" The orientation of the model in the view. |
| /*optional*/ Double | GetScale
()
Get method for attribute "Scale" The scale of the view (null to use the default scale). |
| int | GetSheetNumber
()
Get method for attribute "SheetNumber" The sheet number in which to create the view. |
| Model | GetViewModel
()
Get method for attribute "ViewModel" The solid model to display in the view. |
| /*optional*/ Double | GetViewScale
()
Get method for attribute "ViewScale" The scale of the view (null to use the default scale). |
| void | SetExploded
(
/*optional*/
Boolean value)
Set method for attribute "Exploded" true if the view should be an exploded view, null or false otherwise. |
| void | SetLocation
(Point3D value)
Set method for attribute "Location" The location on the sheet where the view should be placed. |
| void | SetOrientation
(Transform3D value)
Set method for attribute "Orientation" The orientation of the model in the view. |
| void | SetScale
(
/*optional*/
Double value)
Set method for attribute "Scale" The scale of the view (null to use the default scale). |
| void | SetSheetNumber
(int value)
Set method for attribute "SheetNumber" The sheet number in which to create the view. |
| void | SetViewModel
(Model value)
Set method for attribute "ViewModel" The solid model to display in the view. |
| void | SetViewScale
(
/*optional*/
Double value)
Set method for attribute "ViewScale" The scale of the view (null to use the default scale). |
| Methods Inherited from Interface com.ptc.pfc.pfcView2D.View2DCreateInstructions |
|---|
| GetType |
| Method Detail |
|---|
| GetViewModel/SetViewModel |
|---|
| Model | GetViewModel | () |
| void | SetViewModel | (Model value) |
The solid model to display in the view.
|
| GetSheetNumber/SetSheetNumber |
|---|
| int | GetSheetNumber | () |
| void | SetSheetNumber | (int value) |
The sheet number in which to create the view.
|
| GetExploded/SetExploded |
|---|
| /*optional*/ Boolean | GetExploded | () |
| void | SetExploded | ( /*optional*/ Boolean value) |
true if the view should be an exploded view, null or false otherwise.
|
| GetLocation/SetLocation |
|---|
| Point3D | GetLocation | () |
| void | SetLocation | (Point3D value) |
The location on the sheet where the view should be placed.
|
| GetScale/SetScale |
|---|
| /*optional*/ Double | GetScale | () |
| void | SetScale | ( /*optional*/ Double value) |
The scale of the view (null to use the default scale).
|
| GetViewScale/SetViewScale |
|---|
| /*optional*/ Double | GetViewScale | () |
| void | SetViewScale | ( /*optional*/ Double value) |
The scale of the view (null to use the default scale).
|
| GetOrientation/SetOrientation |
|---|
| Transform3D | GetOrientation | () |
| void | SetOrientation | (Transform3D value) |
| The orientation of the model in the view. The transformation matrix must only consist of the rotation to be applied to the model. It must not consist of any displacement or scale components. If necessary, set the displacement to {0, 0, 0} using Transform3D.SetOrigin(Point3D) and remove any scaling factor by normalizing the matrix.
|