Integration of OCCT 6.5.0 from SVN
[occt.git] / src / VrmlConverter / VrmlConverter_PointAspect.cxx
diff --git a/src/VrmlConverter/VrmlConverter_PointAspect.cxx b/src/VrmlConverter/VrmlConverter_PointAspect.cxx
new file mode 100755 (executable)
index 0000000..2d11ae0
--- /dev/null
@@ -0,0 +1,33 @@
+#include <VrmlConverter_PointAspect.ixx>
+
+VrmlConverter_PointAspect::VrmlConverter_PointAspect()
+{
+ myHasMaterial = Standard_False;
+}
+
+VrmlConverter_PointAspect::VrmlConverter_PointAspect (const Handle(Vrml_Material)& aMaterial,
+                                                      const Standard_Boolean OnOff)
+{
+ myMaterial = aMaterial;
+ myHasMaterial = OnOff;
+}
+
+
+void VrmlConverter_PointAspect::SetMaterial(const Handle(Vrml_Material)& aMaterial)
+{
+ myMaterial = aMaterial;
+}
+
+Handle(Vrml_Material) VrmlConverter_PointAspect::Material() const 
+{
+ return myMaterial;
+}
+void VrmlConverter_PointAspect::SetHasMaterial(const Standard_Boolean OnOff)
+{
+ myHasMaterial = OnOff;
+}
+
+Standard_Boolean VrmlConverter_PointAspect::HasMaterial() const 
+{
+ return myHasMaterial;
+}