0.0.1 • Published 13 years ago

ray v0.0.1

Weekly downloads
3
License
-
Repository
github
Last release
13 years ago

Ray

Minimal possible Ray primitive

Introduction

Installation

npm install ray

Usage

Examples

TODO

APIs

Ray

constructor (positions, direction, dimensions = 3)

position A point in space representing the start of the ray.

direction A vector representing the direction the ray points towards.

dimensions the number of dimensions of space the ray exists within.

Constructs a new Ray primitive with the specified parameters.

getMajorAxis ()

Returns the 0-based index of the ray's direction vector with the greatest magnitude.

toRaySegment ()

Returns a RaySegment - the line segment created by minT to maxT along the ray.