Difference between revisions of "MC-Basic:ROBOTTYPE"

From SoftMC-Wiki
Jump to: navigation, search
m (Miborich moved page Axystems:MC-Basic:ROBOTTYPE to MC-Basic:ROBOTTYPE: Global renaming of Axystems: namespace into (Main):)
Line 38: Line 38:
  
 
|SEE ALSO=
 
|SEE ALSO=
* [[Axystems:MC-Basic:ROBOTTYPE$|ROBOTTYPE$]]
+
* [[MC-Basic:ROBOTTYPE$|ROBOTTYPE$]]
  
 
* [[MC-Basic:NOOFCOORDINATES|NOOFCOORDINATES]]
 
* [[MC-Basic:NOOFCOORDINATES|NOOFCOORDINATES]]

Revision as of 08:40, 22 May 2014

Returns the robot type of a point as a long-type numeric value. The function will return zero for point inputs without robot types (i.e., list-of-coordinates and uninitialized generic points).

Syntax

<long_variable> = robottype (<point_expression>)

Availability

Since Version 4.9.11

Type

Long

Scope

Configuration, Task, Terminal

Examples

LongVar = ROBOTTYPE(#{0.0, 10.0, 20.0})

? ROBOTTYPE(JointVar)

LongVar = ROBOTTYPE(Robot.PCMD)
 

See Also