Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/Plane.cpp

    rfa5a6a rd4c9ae  
    9191  offset = normalVector->ScalarProduct(_offsetVector);
    9292}
     93
     94/**
     95 * copy constructor
     96 */
     97Plane::Plane(const Plane& plane) :
     98  normalVector(new Vector(*plane.normalVector)),
     99  offset(plane.offset)
     100{}
     101
    93102
    94103Plane::~Plane()
Note: See TracChangeset for help on using the changeset viewer.