|
@@ -601,37 +601,37 @@ class CodeDatabase:
|
|
|
########################################################################
|
|
########################################################################
|
|
|
|
|
|
|
|
CLASS_RENAME_DICT = {
|
|
CLASS_RENAME_DICT = {
|
|
|
- "Loader" : "PandaLoader" ,
|
|
|
|
|
- "String" : "CString" ,
|
|
|
|
|
- "LMatrix4f" : "Mat4" ,
|
|
|
|
|
- "LMatrix3f" : "Mat3" ,
|
|
|
|
|
- "LVecBase4f" : "VBase4" ,
|
|
|
|
|
- "LVector4f" : "Vec4" ,
|
|
|
|
|
- "LPoint4f" : "Point4" ,
|
|
|
|
|
- "LVecBase3f" : "VBase3" ,
|
|
|
|
|
- "LVector3f" : "Vec3" ,
|
|
|
|
|
- "LPoint3f" : "Point3" ,
|
|
|
|
|
- "LVecBase2f" : "VBase2" ,
|
|
|
|
|
- "LVector2f" : "Vec2" ,
|
|
|
|
|
- "LPoint2f" : "Point2" ,
|
|
|
|
|
- "LQuaternionf" : "Quat" ,
|
|
|
|
|
- "LMatrix4d" : "Mat4D" ,
|
|
|
|
|
- "LMatrix3d" : "Mat3D" ,
|
|
|
|
|
- "LVecBase4d" : "VBase4D" ,
|
|
|
|
|
- "LVector4d" : "Vec4D" ,
|
|
|
|
|
- "LPoint4d" : "Point4D" ,
|
|
|
|
|
- "LVecBase3d" : "VBase3D" ,
|
|
|
|
|
- "LVector3d" : "Vec3D" ,
|
|
|
|
|
- "LPoint3d" : "Point3D" ,
|
|
|
|
|
- "LVecBase2d" : "VBase2D" ,
|
|
|
|
|
- "LVector2d" : "Vec2D" ,
|
|
|
|
|
- "LPoint2d" : "Point2D" ,
|
|
|
|
|
- "LQuaterniond" : "QuatD" ,
|
|
|
|
|
- "Plane" : "PlaneBase" ,
|
|
|
|
|
- "Planef" : "Plane" ,
|
|
|
|
|
- "Planed" : "PlaneD" ,
|
|
|
|
|
- "Frustum" : "FrustumBase" ,
|
|
|
|
|
- "Frustumf" : "Frustum" ,
|
|
|
|
|
|
|
+ "Loader" : "PandaLoader",
|
|
|
|
|
+ "String" : "CString",
|
|
|
|
|
+ "LMatrix4f" : "Mat4",
|
|
|
|
|
+ "LMatrix3f" : "Mat3",
|
|
|
|
|
+ "LVecBase4f" : "VBase4",
|
|
|
|
|
+ "LVector4f" : "Vec4",
|
|
|
|
|
+ "LPoint4f" : "Point4",
|
|
|
|
|
+ "LVecBase3f" : "VBase3",
|
|
|
|
|
+ "LVector3f" : "Vec3",
|
|
|
|
|
+ "LPoint3f" : "Point3",
|
|
|
|
|
+ "LVecBase2f" : "VBase2",
|
|
|
|
|
+ "LVector2f" : "Vec2",
|
|
|
|
|
+ "LPoint2f" : "Point2",
|
|
|
|
|
+ "LQuaternionf" : "Quat",
|
|
|
|
|
+ "LMatrix4d" : "Mat4D",
|
|
|
|
|
+ "LMatrix3d" : "Mat3D",
|
|
|
|
|
+ "LVecBase4d" : "VBase4D",
|
|
|
|
|
+ "LVector4d" : "Vec4D",
|
|
|
|
|
+ "LPoint4d" : "Point4D",
|
|
|
|
|
+ "LVecBase3d" : "VBase3D",
|
|
|
|
|
+ "LVector3d" : "Vec3D",
|
|
|
|
|
+ "LPoint3d" : "Point3D",
|
|
|
|
|
+ "LVecBase2d" : "VBase2D",
|
|
|
|
|
+ "LVector2d" : "Vec2D",
|
|
|
|
|
+ "LPoint2d" : "Point2D",
|
|
|
|
|
+ "LQuaterniond" : "QuatD",
|
|
|
|
|
+ "Plane" : "PlaneBase",
|
|
|
|
|
+ "Planef" : "Plane",
|
|
|
|
|
+ "Planed" : "PlaneD",
|
|
|
|
|
+ "Frustum" : "FrustumBase",
|
|
|
|
|
+ "Frustumf" : "Frustum",
|
|
|
"Frustumd" : "FrustumD"
|
|
"Frustumd" : "FrustumD"
|
|
|
}
|
|
}
|
|
|
|
|
|