SVec2D
A 2-element structure that can be used to represent positions and directions in 2D-space.
Constructors
Method New(x:Double, y:Double)
Creates a new SVec2D from the supplied arguments.
Operators
Method Operator<>:Int(b:SVec2D)
Returns True if b is different.
Method Operator=:Int(b:SVec2D)
Returns True if the vector and b are aproximately equal.
Method Operator+:SVec2D(b:SVec2D)
Adds b to the vector, returning a new vector.
Example
SuperStrict
Framework brl.standardio
Import brl.vector
Local a:SVec2D = New SVec2D(3, 2)
Local b:SVec2D = New SVec2D(-2, 1)
Local c:SVec2D = a + b
Print c.ToString() ' 1, 3
Method Operator-:SVec2D(b:SVec2D)
Subtracts b from the vector, returning a new vector.
Example
SuperStrict
Framework brl.standardio
Import brl.vector
Local a:SVec2D = New SVec2D(12, 2)
Local b:SVec2D = New SVec2D(4, 5)
Local c:SVec2D = a - b
Print c.ToString() ' 8, -3
Method Operator*:SVec2D(b:SVec2D)
Multiplies the vector by b, returning a new vector.
Example
SuperStrict
Framework brl.standardio
Import brl.vector
Local a:SVec2D = New SVec2D(2, 3)
Local b:SVec2D = New SVec2D(5, 6)
Local c:SVec2D = a * b
Print c.ToString() ' 10, 18
Method Operator/:SVec2D(b:SVec2D)
Divides the vector by b, returning a new vector.
Example
SuperStrict
Framework brl.standardio
Import brl.vector
Local a:SVec2D = New SVec2D(10, 18)
Local b:SVec2D = New SVec2D(5, 6)
Local c:SVec2D = a / b
Print c.ToString() ' 2, 3
Method Operator-:SVec2D()
Returns a new vector, negated.
Example
SuperStrict
Framework brl.standardio
Import brl.vector
Local a:SVec2D = New SVec2D(12, 2)
Local b:SVec2D = -a
Print b.ToString() ' -12, -2
Method Operator*:SVec2D(s:Double)
Scales the vector by s, returning a new vector.
Example
SuperStrict
Framework brl.standardio
Import brl.vector
Local m:SVec2D = New SVec2D(7, 3)
Local a:SVec2D = m * 3
Print a.ToString() ' 21, 9
Method Operator/:SVec2D(s:Double)
Divides the vector by s, returning a new vector.
Example
SuperStrict
Framework brl.standardio
Import brl.vector
Local m:SVec2D = New SVec2D(21, 9)
Local a:SVec2D = m / 3
Print a.ToString() ' 7, 3
Method Operator[]:Double(index:Int)
Retrieves the x or y component using [0] or [1] respectively.
Example
SuperStrict
Framework brl.standardio
Import brl.vector
Local a:SVec2D = New SVec2D(6, 4)
Print a[0] + ", " + a[1]
Methods
Method AngleTo:Double(b:SVec2D)
Returns the unsigned angle between this vector and b.
Example
SuperStrict
Framework brl.standardio
Import brl.vector
Local a:SVec2D = New SVec2D(-5, -5)
Local b:SVec2D = New SVec2D(5, 5)
Local c:Double = a.AngleTo(b)
Print c
Method Clamp:SVec2D(minv:SVec2D, maxv:SVec2D)
Returns a vector clamped between the vectors minv and maxv.
Example
SuperStrict
Framework brl.standardio
Import brl.vector
Local a:SVec2D = New SVec2D(0, 0)
Local b:SVec2D = New SVec2D(10, 5)
Local v:SVec2D = New SVec2D(11, -2)
Local c:SVec2D = v.Clamp(a, b)
Print c.ToString() ' 10, 0
Method Min:SVec2D(b:SVec2D)
Returns a vector that is made from the smallest components of the two vectors.
Example
SuperStrict
Framework brl.standardio
Import brl.vector
Local a:SVec2D = New SVec2D(12, 8)
Local b:SVec2D = New SVec2D(10, 16)
Local c:SVec2D = a.Min(b)
Print c.ToString() ' 10, 8
Method Max:SVec2D(b:SVec2D)
Returns a vector that is made from the largest components of the two vectors.
Example
SuperStrict
Framework brl.standardio
Import brl.vector
Local a:SVec2D = New SVec2D(12, 8)
Local b:SVec2D = New SVec2D(10, 16)
Local c:SVec2D = a.Max(b)
Print c.ToString() ' 12, 16
Method Interpolate:SVec2D(b:SVec2D, t:Double)
Linearly interpolates between two vectors.
Interpolates between this vector and b by the interpolant t. This is commonly used to find a point some fraction of the way along a line between two endpoints (e.g. to move an object gradually between those points).
Example
SuperStrict
Framework brl.standardio
Import brl.vector
Local a:SVec2D = New SVec2D(-6, 8)
Local b:SVec2D = New SVec2D(5, 12)
Print a.Interpolate(b, 0).ToString() ' -6, 8
Print a.Interpolate(b, 1).ToString() ' 5, 12
Print a.Interpolate(b, 0.5).ToString() ' -0.5, 10
Method Normal:SVec2D()
Returns a vector with a magnitude of 1.
When normalized, a vector keeps the same direction but its length is 1.0.
Example
SuperStrict
Framework brl.standardio
Import brl.vector
Local a:SVec2D = New SVec2D(10, 0)
Local b:SVec2D = a.Normal()
Print b.ToString() ' 1, 0
Method Dot:Double(b:SVec2D)
Returns the dot product of two vectors.
For normalized vectors Dot returns 1 if they point in exactly the same direction, -1 if they point in completely opposite directions, and a number in between for other cases (e.g. Dot returns zero if vectors are perpendicular).
Example
SuperStrict
Framework brl.standardio
Import brl.vector
Local a:SVec2D = New SVec2D(-6, 8)
Local b:SVec2D = New SVec2D(5, 12)
Local dot:Float = a.Dot(b)
Print dot ' 66
Method Length:Double()
Returns the length of the vector.
Example
SuperStrict
Framework brl.standardio
Import brl.vector
Local a:SVec2D = New SVec2D(3, 4)
Local length:Float = a.Length()
Print length ' 5
Method LengthSquared:Double()
Returns the squared length of the vector.
Calculating the squared length instead of the length is much faster. Often if you are comparing lengths of two vectors you can just compare their squared lengths.
Example
SuperStrict
Framework brl.standardio
Import brl.vector
Local a:SVec2D = New SVec2D(3, 4)
Local length:Double = a.LengthSquared()
Print length ' 25
Method DistanceTo:Double(b:SVec2D)
Returns the distance between the vector And b.
Method DistanceToSquared:Double(b:SVec2D)
Returns the squared distance between the vector and b.
Method Perpendicular:SVec2D()
Returns a vector perpendicular to the vector.
Method Reflect:SVec2D(n:SVec2D)
Returns a vector reflected from the given plane, specified by its normal vector.
Example
SuperStrict
Framework brl.standardio
Import brl.vector
Local a:SVec2D = New SVec2D(5, 0)
Local b:SVec2D = New SVec2D(0, 10)
Local c:SVec2D = a.Reflect(b)
Print c.ToString() ' -5, 0
Method Rotate:SVec2D(angle:Double)
Returns a vector rotated by angle degrees.
Method ToString:String() Override
Returns a String representation of the vector.