# HG changeset patch # User Steve Losh # Date 1471706201 0 # Node ID 551e2a3161c79ec47f69567a9ec86ff65bf901d7 # Parent 7ee362126d6f347673bbe7cf8cff3a649acbf875 vex: Update site. diff -r 7ee362126d6f -r 551e2a3161c7 vex/reference/index.html --- a/vex/reference/index.html Sat Aug 20 15:15:18 2016 +0000 +++ b/vex/reference/index.html Sat Aug 20 15:16:41 2016 +0000 @@ -22,70 +22,86 @@
  • Package VEX @@ -101,13 +117,19 @@

    Add v1 and v2 componentwise, returning a new vector.

    -

    VEC2-ADD* (function)

    +

    VEC2-ADD! (function)

    +
    (VEC2-ADD! V1 V2)
    +
    + + +

    Destructively update v1 by adding v2 componentwise, returning v1.

    +

    VEC2-ADD* (function)

    (VEC2-ADD* V X Y)
     

    Add x and y to the components of v, returning a new vector.

    -

    VEC2-ADD*! (function)

    +

    VEC2-ADD*! (function)

    (VEC2-ADD*! V X Y)
     
    @@ -131,6 +153,12 @@

    Divide the components of v by scalar, returning a new vector.

    +

    VEC2-DIV! (function)

    +
    (VEC2-DIV! V SCALAR)
    +
    + + +

    Destructively divide the components of v by scalar, returning v.

    VEC2-EQL (function)

    (VEC2-EQL V1 V2 &OPTIONAL EPSILON)
     
    @@ -166,19 +194,31 @@

    Multiply the components of v by scalar, returning a new vector.

    +

    VEC2-MUL! (function)

    +
    (VEC2-MUL! V SCALAR)
    +
    + + +

    Destructively multiply the components of v by scalar, returning v.

    VEC2-SUB (function)

    (VEC2-SUB V1 V2)
     

    Subtract v1 and v2 componentwise, returning a new vector.

    -

    VEC2-SUB* (function)

    +

    VEC2-SUB! (function)

    +
    (VEC2-SUB! V1 V2)
    +
    + + +

    Destructively update v1 by subtracting v2 componentwise, returning v1.

    +

    VEC2-SUB* (function)

    (VEC2-SUB* V X Y)
     

    Subtract x and y from the components of v, returning a new vector.

    -

    VEC2-SUB*! (function)

    +

    VEC2-SUB*! (function)

    (VEC2-SUB*! V X Y)
     
    @@ -203,13 +243,19 @@

    Add v1 and v2 componentwise, returning a new vector.

    -

    VEC2D-ADD* (function)

    +

    VEC2D-ADD! (function)

    +
    (VEC2D-ADD! V1 V2)
    +
    + + +

    Destructively update v1 by adding v2 componentwise, returning v1.

    +

    VEC2D-ADD* (function)

    (VEC2D-ADD* V X Y)
     

    Add x and y to the components of v, returning a new vector.

    -

    VEC2D-ADD*! (function)

    +

    VEC2D-ADD*! (function)

    (VEC2D-ADD*! V X Y)
     
    @@ -233,6 +279,12 @@

    Divide the components of v by scalar, returning a new vector.

    +

    VEC2D-DIV! (function)

    +
    (VEC2D-DIV! V SCALAR)
    +
    + + +

    Destructively divide the components of v by scalar, returning v.

    VEC2D-EQL (function)

    (VEC2D-EQL V1 V2 &OPTIONAL EPSILON)
     
    @@ -268,19 +320,31 @@

    Multiply the components of v by scalar, returning a new vector.

    +

    VEC2D-MUL! (function)

    +
    (VEC2D-MUL! V SCALAR)
    +
    + + +

    Destructively multiply the components of v by scalar, returning v.

    VEC2D-SUB (function)

    (VEC2D-SUB V1 V2)
     

    Subtract v1 and v2 componentwise, returning a new vector.

    -

    VEC2D-SUB* (function)

    +

    VEC2D-SUB! (function)

    +
    (VEC2D-SUB! V1 V2)
    +
    + + +

    Destructively update v1 by subtracting v2 componentwise, returning v1.

    +

    VEC2D-SUB* (function)

    (VEC2D-SUB* V X Y)
     

    Subtract x and y from the components of v, returning a new vector.

    -

    VEC2D-SUB*! (function)

    +

    VEC2D-SUB*! (function)

    (VEC2D-SUB*! V X Y)
     
    @@ -305,13 +369,19 @@

    Add v1 and v2 componentwise, returning a new vector.

    -

    VEC2F-ADD* (function)

    +

    VEC2F-ADD! (function)

    +
    (VEC2F-ADD! V1 V2)
    +
    + + +

    Destructively update v1 by adding v2 componentwise, returning v1.

    +

    VEC2F-ADD* (function)

    (VEC2F-ADD* V X Y)
     

    Add x and y to the components of v, returning a new vector.

    -

    VEC2F-ADD*! (function)

    +

    VEC2F-ADD*! (function)

    (VEC2F-ADD*! V X Y)
     
    @@ -335,6 +405,12 @@

    Divide the components of v by scalar, returning a new vector.

    +

    VEC2F-DIV! (function)

    +
    (VEC2F-DIV! V SCALAR)
    +
    + + +

    Destructively divide the components of v by scalar, returning v.

    VEC2F-EQL (function)

    (VEC2F-EQL V1 V2 &OPTIONAL EPSILON)
     
    @@ -370,19 +446,31 @@

    Multiply the components of v by scalar, returning a new vector.

    +

    VEC2F-MUL! (function)

    +
    (VEC2F-MUL! V SCALAR)
    +
    + + +

    Destructively multiply the components of v by scalar, returning v.

    VEC2F-SUB (function)

    (VEC2F-SUB V1 V2)
     

    Subtract v1 and v2 componentwise, returning a new vector.

    -

    VEC2F-SUB* (function)

    +

    VEC2F-SUB! (function)

    +
    (VEC2F-SUB! V1 V2)
    +
    + + +

    Destructively update v1 by subtracting v2 componentwise, returning v1.

    +

    VEC2F-SUB* (function)

    (VEC2F-SUB* V X Y)
     

    Subtract x and y from the components of v, returning a new vector.

    -

    VEC2F-SUB*! (function)

    +

    VEC2F-SUB*! (function)

    (VEC2F-SUB*! V X Y)
     
    @@ -407,13 +495,19 @@

    Add v1 and v2 componentwise, returning a new vector.

    -

    VEC2I-ADD* (function)

    +

    VEC2I-ADD! (function)

    +
    (VEC2I-ADD! V1 V2)
    +
    + + +

    Destructively update v1 by adding v2 componentwise, returning v1.

    +

    VEC2I-ADD* (function)

    (VEC2I-ADD* V X Y)
     

    Add x and y to the components of v, returning a new vector.

    -

    VEC2I-ADD*! (function)

    +

    VEC2I-ADD*! (function)

    (VEC2I-ADD*! V X Y)
     
    @@ -437,6 +531,12 @@

    Divide the components of v by scalar, returning a new vector.

    +

    VEC2I-DIV! (function)

    +
    (VEC2I-DIV! V SCALAR)
    +
    + + +

    Destructively divide the components of v by scalar, returning v.

    VEC2I-EQL (function)

    (VEC2I-EQL V1 V2 &OPTIONAL EPSILON)
     
    @@ -472,19 +572,31 @@

    Multiply the components of v by scalar, returning a new vector.

    +

    VEC2I-MUL! (function)

    +
    (VEC2I-MUL! V SCALAR)
    +
    + + +

    Destructively multiply the components of v by scalar, returning v.

    VEC2I-SUB (function)

    (VEC2I-SUB V1 V2)
     

    Subtract v1 and v2 componentwise, returning a new vector.

    -

    VEC2I-SUB* (function)

    +

    VEC2I-SUB! (function)

    +
    (VEC2I-SUB! V1 V2)
    +
    + + +

    Destructively update v1 by subtracting v2 componentwise, returning v1.

    +

    VEC2I-SUB* (function)

    (VEC2I-SUB* V X Y)
     

    Subtract x and y from the components of v, returning a new vector.

    -

    VEC2I-SUB*! (function)

    +

    VEC2I-SUB*! (function)

    (VEC2I-SUB*! V X Y)