0031687: Draw Harness, ViewerTest - extend command vrenderparams with option updating...
[occt.git] / src / Vrml / Vrml_TextureCoordinate2.cxx
1 // Copyright (c) 1999-2014 OPEN CASCADE SAS
2 //
3 // This file is part of Open CASCADE Technology software library.
4 //
5 // This library is free software; you can redistribute it and/or modify it under
6 // the terms of the GNU Lesser General Public License version 2.1 as published
7 // by the Free Software Foundation, with special exception defined in the file
8 // OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
9 // distribution for complete text of the license and disclaimer of any warranty.
10 //
11 // Alternatively, this file may be used under the terms of Open CASCADE
12 // commercial license or contractual agreement.
13
14
15 #include <Standard_Type.hxx>
16 #include <Vrml_TextureCoordinate2.hxx>
17
18 IMPLEMENT_STANDARD_RTTIEXT(Vrml_TextureCoordinate2,Standard_Transient)
19
20 Vrml_TextureCoordinate2::Vrml_TextureCoordinate2()
21 {
22   gp_Vec2d tmpVec(0,0);
23   myPoint = new TColgp_HArray1OfVec2d(1,1,tmpVec);
24 }
25
26 Vrml_TextureCoordinate2::Vrml_TextureCoordinate2(const Handle(TColgp_HArray1OfVec2d)& aPoint)
27 {
28   myPoint = aPoint;
29 }
30
31  void Vrml_TextureCoordinate2::SetPoint(const Handle(TColgp_HArray1OfVec2d)& aPoint) 
32 {
33   myPoint = aPoint;
34 }
35
36  Handle(TColgp_HArray1OfVec2d) Vrml_TextureCoordinate2::Point() const
37 {
38   return myPoint;
39 }
40
41  Standard_OStream& Vrml_TextureCoordinate2::Print(Standard_OStream& anOStream) const
42 {
43  Standard_Integer i;
44  anOStream  << "TextureCoordinate2 {\n";
45
46  if ( myPoint->Length() != 1 || Abs(myPoint->Value(myPoint->Lower()).X() - 0) > 0.0001 || 
47                                 Abs(myPoint->Value(myPoint->Lower()).Y() - 0) > 0.0001 )
48   { 
49    anOStream  << "    point [\n\t";
50     for ( i = myPoint->Lower(); i <= myPoint->Upper(); i++ )
51         {
52          anOStream << myPoint->Value(i).X() << " " << myPoint->Value(i).Y();
53
54          if ( i < myPoint->Length() )
55             anOStream  << ",\n\t";
56         }
57     anOStream  << " ]\n";
58   }
59   anOStream  << "}\n";
60  return anOStream;
61 }