Panda3D
 All Classes Functions Variables Enumerations
config_parametrics.cxx
00001 // Filename: config_parametrics.cxx
00002 // Created by:  drose (19Mar00)
00003 //
00004 ////////////////////////////////////////////////////////////////////
00005 //
00006 // PANDA 3D SOFTWARE
00007 // Copyright (c) Carnegie Mellon University.  All rights reserved.
00008 //
00009 // All use of this software is subject to the terms of the revised BSD
00010 // license.  You should have received a copy of this license along
00011 // with this source code in a file named "LICENSE."
00012 //
00013 ////////////////////////////////////////////////////////////////////
00014 
00015 #include "nurbsCurve.h"
00016 #include "config_parametrics.h"
00017 #include "cubicCurveseg.h"
00018 #include "curveFitter.h"
00019 #include "hermiteCurve.h"
00020 #include "nurbsCurveInterface.h"
00021 #include "parametricCurve.h"
00022 #include "piecewiseCurve.h"
00023 #include "ropeNode.h"
00024 #include "sheetNode.h"
00025 
00026 Configure(config_parametrics);
00027 NotifyCategoryDef(parametrics, "");
00028 
00029 ConfigureFn(config_parametrics) {
00030   NurbsCurve::init_type();
00031   CubicCurveseg::init_type();
00032   CurveFitter::init_type();
00033   HermiteCurve::init_type();
00034   NurbsCurveInterface::init_type();
00035   ParametricCurve::init_type();
00036   PiecewiseCurve::init_type();
00037   RopeNode::init_type();
00038   SheetNode::init_type();
00039 
00040   NurbsCurve::register_with_read_factory();
00041   CubicCurveseg::register_with_read_factory();
00042   HermiteCurve::register_with_read_factory();
00043   RopeNode::register_with_read_factory();
00044   SheetNode::register_with_read_factory();
00045 }
 All Classes Functions Variables Enumerations