Difference between revisions of "MC-Basic:ROBOTTYPE"

From SoftMC-Wiki
Jump to: navigation, search
m (Text replace - "Version 4.9.11 and up." to "Since Version 4.9.11")
 
(7 intermediate revisions by one other user not shown)
Line 1: Line 1:
 +
{{Languages|MC-Basic:ROBOTTYPE}}
 
{{MC-Basic
 
{{MC-Basic
 
|SHORT FORM=
 
|SHORT FORM=
Line 38: Line 39:
  
 
|SEE ALSO=
 
|SEE ALSO=
* [[Axystems:MC-Basic:ROBOTTYPE$|ROBOTTYPE$]]
+
* [[MC-Basic:ROBOTTYPE$|ROBOTTYPE$]]
  
* [[Axystems:MC-Basic:NOOFCOORDINATES|NOOFCOORDINATES]]
+
* [[MC-Basic:NOOFCOORDINATES|NOOFCOORDINATES]]
* [[Axystems:MC-Basic:CASTJOINT|CASTJOINT]]
+
* [[MC-Basic:CASTJOINT|CASTJOINT]]
  
* [[Axystems:MC-Basic:CASTLOCATION|CASTLOCATION]]
+
* [[MC-Basic:CASTLOCATION|CASTLOCATION]]
  
* [[Axystems:Point_Type_List|LIST OF ROBOT TYPES]]
+
* [[Point Type List|LIST OF ROBOT TYPES]]
  
  
[[Category:Axystems:MC-Basic:Points Handling|ROBOTTYPE]]
+
[[Category:MC-Basic:Points Handling|ROBOTTYPE]]
  
 
}}
 
}}

Latest revision as of 06:58, 27 April 2017

Language: English  • 中文(简体)‎

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