Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

point - a variable containing numerical coordinates and the units associated with those coordinates.
point(pointarray) :=

  • temp <-- ""
  • for i to of 0..(rows(pointarray) - 1)
    • temp <-- concat(temp,stringit(pointarrayi))
    • temp <-- concat(temp,",") if i < (rows(pointarray) - 1)
  • temp

pointnonunits - a variable containing numerical coordinates without units.
pointnonunits(pointarray)

  • temp <-- ""
  • for i to of 0..(rows(pointarray) - 1)
    • temp <-- concat(temp,stringitnonunits(pointarrayi))
    • temp <-- concat(temp,",") if i < (rows(pointarray) - 1)
  • temp