Skip to content

Geom.radiusX()

Description

Radius of point in YOZ plane.

Syntax

JS
Geom.radiusX(point: Point3) -> Number
Geom.radiusX(x: Number, y: Number, z: Number) -> Number

Parameters

Parameter Type Default Value Mandatory Description
point Point3 ✅ Three-dimensional point.
x Number ✅ x-coordinate of the point
y Number ✅ y-coordinate of the point
z Number ✅ z-coordinate of the point

Note

Can be passed either a Point3 object or separate x, y, z.

Return value

Type Description
Number Radius of the point relative to [0,0,0].

Example

JS
1
2
3
4
let radius1 = Geom.radiusX(Geom.point3(10,10,10))
console.info(radius1) // output:
let radius2 = Geom.radiusX(10,10,10)
console.info(radius2) // output:

See also

Last update: 14 August 2025, 18:47