POINT XY: Difference between revisions

From Macros Wiki
Jump to navigationJump to search
ConnerO (talk | contribs)
No edit summary
ConnerO (talk | contribs)
No edit summary
 
(8 intermediate revisions by the same user not shown)
Line 1: Line 1:
{{Command|syntax=POINT_XY <[[point number]]>, <[[x]]>, <[[y]]>,
[[Geometry:Creating_Geometry|{{Up}}]]
|description=This is used to create a point using the x and y position.


|param1=<point number>|param1_desc=  The number of the point (1 to 100) to be defined. This is a number used by the macro to create other geometry.
{{Command|syntax=POINT_XY <point number>, <x>, <y>
|param2=<x>|param2_desc= The x axis value
|description=:Create a [[macro_point|point]] using the x and y position.
|param3=<y>|param3_desc= The y axis value
 
|param1=<point number>|param1_desc=  {{create point number}}
|param2=<x>|param2_desc= {{x}}
|param3=<y>|param3_desc= {{y}}
}}
}}


===Example===
===Example===
:- POINT_XY 12, 3, 4
:POINT_XY 12, 3, 4
 
:For an example macro see [[Contour_2]]
:- POINT_XY 41, 8, 31
 
 


[[Category:Geometry]]
[[Category:Geometry]]

Latest revision as of 14:33, 13 August 2010

Up

Command

POINT_XY <point number>, <x>, <y>


Create a point using the x and y position.

Parameters

<point number>
The number of the point to be created.
A number between 1 and 100.
<x>
X co-ordinate of a feature.
<y>
Y co-ordinate of a feature.

Example

POINT_XY 12, 3, 4
For an example macro see Contour_2