Ignore:
Timestamp:
Apr 29, 2010, 4:03:30 PM (16 years ago)
Author:
Tillmann Crueger <crueger@…>
Children:
465abf
Parents:
16eb32
Message:

FIX: Bug that caused memory corruption in Vector::GetOneNormalVector() when a two component system was given

File:
1 edited

Legend:

Unmodified
Added
Removed
  • molecuilder/src/Plane.cpp

    r16eb32 r6a314f  
    9797  return getOffset()*getNormal();
    9898}
     99/*
     100std::vector<Vector> Plane::getPointsOnPlane(){
     101  std::vector<Vector> res;
     102  // first point on the plane
     103  res[0] = getOffsetVector();
     104  // first is orthogonal to the plane...
     105  // an orthogonal vector to this one lies on the plane
     106  res[1] =
     107}
     108*/
    99109
    100110/** Calculates the intersection point between a line defined by \a *LineVector and \a *LineVector2 and a plane defined by \a *Normal and \a *PlaneOffset.
Note: See TracChangeset for help on using the changeset viewer.