pcConcatOrient
pcConcatOrient(
t_orientation1
t_orientation2
)
=> t_concatOrient / R0
Description
Concatenates two specified object orientations into one.
Arguments
|
t_orientation1
|
String specifying the first orientation.
Valid Values: "R0", "R90", "R180", "R270", "MX", "MY", "MR90", "MR270"
MR90 is equivalent to MXR90
MR270 is equivalent to MYR90
|
|
t_orientation2
|
String specifying the second orientation.
Valid Values: "R0", "R90", "R180", "R270", "MX", "MY", "MR90", "MR270"
MR90 is equivalent to MXR90
MR270 is equivalent to MYR90
|
Value Returned
|
t_concatOrient
|
Orientation resulting from the concatenation.
|
|
"R0"
|
Returns "R0" if the concatenation fails.
|
Examples
pcConcatOrient("R0" "R90") => "R90"
Concatenates the orientation R0 with R90, resulting in an orientation of R90.
Return to top