Skip to content

Geom.radiusY()

Description

Radius of a point in the XOZ plane, zero at [0,0,0].

Syntax

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

Parameters

Parameter Type Default Value Mandatory Description
point Point3 ✅ Point in three-dimensional space.
x Number ✅ x-coordinate of the point
y Number ✅ y-coordinate of the point
z Number ✅ z-coordinate of the point

Note

Can pass either a Point3 object, or separate x, y, z values.

Return value

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

Example

JS
1
2
3
4
5
6
7
8
let radius1 = Geom.radiusY(Geom.point3(10,10,10))
console.info(radius1) // output:
let radius2 = Geom.radiusY(10,10,10)
console.info(radius2) // output:

!!! info "See also"

    []()
Last update: 14 August 2025, 18:47