Copyright © 2021 by K4.org
  (v.0.48.124)

Provides Rectangle-like parameters and behavior. The rectangle is defined in the XY plane. Note that 'width' is the dimension in the Y direction, not 'height'.

Index

Rules

area

area: Number

The area of the rectangle.

Flags : Cached (Note this is uncached)

Expression : this.length * this.width

edgeCenterBack

edgeCenterBack: Point

The center point of the maximum-Y edge.

Flags : Cached (Note this is uncached)

Expression : p(0, this.width / 2, 0)

edgeCenterFront

edgeCenterFront: Point

The center point of the minimum-Y edge.

Flags : Cached (Note this is uncached)

Expression : p(0, -this.width / 2, 0)

edgeCenterLeft

edgeCenterLeft: Point

The center point of the minimum-X edge.

Flags : Cached (Note this is uncached)

Expression : p(-this.length / 2, 0, 0)

edgeCenterRight

edgeCenterRight: Point

The center point of the maximum-X edge.

Flags : Cached (Note this is uncached)

Expression : p(this.length / 2, 0, 0)

length

length: Number

The size of the rectangle in the X direction.

Flags : Cached, Parameter (Note this is uncached)

Expression : 1

vertexLB

vertexLB: Point

The point at the minimum-X, maximum-Y corner.

Flags : Cached (Note this is uncached)

Expression : p(-this.length / 2, this.width / 2, 0)

vertexLF

vertexLF: Point

The point at the minimum-X, minimum-Y corner.

Flags : Cached (Note this is uncached)

Expression : p(-this.length / 2, -this.width / 2, 0)

vertexRB

vertexRB: Point

The point at the maximum-X, maximum-Y corner.

Flags : Cached (Note this is uncached)

Expression : p(this.length / 2, this.width / 2, 0)

vertexRF

vertexRF: Point

The point at the maximum-X, minimum-Y corner.

Flags : Cached (Note this is uncached)

Expression : p(this.length / 2, -this.width / 2, 0)

width

width: Number

The size of the rectangle in the Y direction.

Flags : Cached, Parameter (Note this is uncached)

Expression : 1