| Class | Fox::FXHVec |
| In: |
rdoc-sources/FXVec4.rb
lib/fox12/core.rb |
| Parent: | Object |
FXHVec is a 3-D homogenous vector.
Returns a new FXHVec, each of whose components is equal to the greater of this vector’s and other’s components, i.e.
self.lo(other) === FXHVec.new( [self[0], other[0]].max,
[self[1], other[1]].max,
[self[2], other[2]].max,
[self[3], other[3]].max )
Returns a new FXHVec, each of whose components is equal to the smaller of this vector’s and other’s components, i.e.
self.lo(other) === FXHVec.new( [self[0], other[0]].min,
[self[1], other[1]].min,
[self[2], other[2]].min,
[self[3], other[3]].min )