mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-05 18:16:23 +03:00
License statement text corrected; compiler warnings caused by Bison 2.41 disabled for MSVC; a few other compiler warnings on 54-bit Windows eliminated by appropriate type cast Wrong license statements corrected in several files. Copyright and license statements added in XSD and GLSL files. Copyright year updated in some files. Obsolete documentation files removed from DrawResources.
192 lines
4.7 KiB
C++
192 lines
4.7 KiB
C++
// Copyright (c) 1995-1999 Matra Datavision
|
|
// Copyright (c) 1999-2014 OPEN CASCADE SAS
|
|
//
|
|
// This file is part of Open CASCADE Technology software library.
|
|
//
|
|
// This library is free software; you can redistribute it and/or modify it under
|
|
// the terms of the GNU Lesser General Public License version 2.1 as published
|
|
// by the Free Software Foundation, with special exception defined in the file
|
|
// OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
|
|
// distribution for complete text of the license and disclaimer of any warranty.
|
|
//
|
|
// Alternatively, this file may be used under the terms of Open CASCADE
|
|
// commercial license or contractual agreement.
|
|
|
|
#include <Aspect_WidthMapEntry.ixx>
|
|
#include <Aspect_Units.hxx>
|
|
|
|
Aspect_WidthMapEntry::Aspect_WidthMapEntry() {
|
|
|
|
SetPredefinedStyle(Aspect_WOL_THIN);
|
|
MyIndexIsDef = Standard_True;
|
|
MyIndex = 0;
|
|
|
|
}
|
|
|
|
Aspect_WidthMapEntry::Aspect_WidthMapEntry (const Standard_Integer index, const Aspect_WidthOfLine style) {
|
|
|
|
SetPredefinedStyle(style);
|
|
MyIndexIsDef = Standard_True;
|
|
MyIndex = index;
|
|
|
|
}
|
|
|
|
Aspect_WidthMapEntry::Aspect_WidthMapEntry (const Standard_Integer index, const Quantity_Length width) {
|
|
|
|
if( width < 0. )
|
|
Aspect_BadAccess::Raise("Bad Line Width") ;
|
|
|
|
MyType = Aspect_WOL_USERDEFINED ;
|
|
MyTypeIsDef = Standard_True;
|
|
MyIndexIsDef = Standard_True;
|
|
MyIndex = index;
|
|
MyWidth = width;
|
|
|
|
}
|
|
|
|
Aspect_WidthMapEntry::Aspect_WidthMapEntry (const Aspect_WidthMapEntry& entry) {
|
|
|
|
if ( !entry.MyTypeIsDef || !entry.MyIndexIsDef ) {
|
|
Aspect_BadAccess::Raise("Unallocated WidthMapEntry") ;
|
|
}
|
|
else {
|
|
MyTypeIsDef = Standard_True;
|
|
MyIndexIsDef = Standard_True;
|
|
MyIndex = entry.MyIndex;
|
|
MyType = entry.MyType;
|
|
MyWidth = entry.MyWidth;
|
|
}
|
|
}
|
|
|
|
void Aspect_WidthMapEntry::SetValue (const Standard_Integer index, const Aspect_WidthOfLine style) {
|
|
|
|
SetPredefinedStyle(style);
|
|
MyIndexIsDef = Standard_True;
|
|
MyIndex = index;
|
|
|
|
}
|
|
|
|
void Aspect_WidthMapEntry::SetValue (const Standard_Integer index, const Quantity_Length width) {
|
|
|
|
if( width < 0. )
|
|
Aspect_BadAccess::Raise("Bad Line Width") ;
|
|
|
|
MyType = Aspect_WOL_USERDEFINED ;
|
|
MyTypeIsDef = Standard_True;
|
|
MyWidth = width ;
|
|
MyIndexIsDef = Standard_True;
|
|
MyIndex = index;
|
|
|
|
}
|
|
|
|
void Aspect_WidthMapEntry::SetValue (const Aspect_WidthMapEntry& entry) {
|
|
|
|
if ( !entry.MyTypeIsDef || !entry.MyIndexIsDef ) {
|
|
Aspect_BadAccess::Raise("Unallocated WidthMapEntry") ;
|
|
}
|
|
else {
|
|
MyTypeIsDef = Standard_True;
|
|
MyIndexIsDef = Standard_True;
|
|
MyIndex = entry.MyIndex;
|
|
MyType = entry.MyType;
|
|
MyWidth = entry.MyWidth;
|
|
}
|
|
|
|
}
|
|
|
|
void Aspect_WidthMapEntry::SetType (const Aspect_WidthOfLine style) {
|
|
|
|
SetPredefinedStyle(style);
|
|
|
|
}
|
|
|
|
void Aspect_WidthMapEntry::SetWidth (const Quantity_Length width) {
|
|
|
|
if( width < 0. )
|
|
Aspect_BadAccess::Raise("Bad Line Width") ;
|
|
|
|
MyType = Aspect_WOL_USERDEFINED ;
|
|
MyTypeIsDef = Standard_True;
|
|
MyWidth = width ;
|
|
|
|
}
|
|
|
|
Aspect_WidthOfLine Aspect_WidthMapEntry::Type () const {
|
|
|
|
if ( !MyTypeIsDef || !MyIndexIsDef )
|
|
Aspect_BadAccess::Raise("Unallocated WidthMapEntry") ;
|
|
|
|
return MyType;
|
|
|
|
}
|
|
|
|
Standard_Real Aspect_WidthMapEntry::Width () const {
|
|
|
|
if ( !MyTypeIsDef || !MyIndexIsDef )
|
|
Aspect_BadAccess::Raise("Unallocated WidthMapEntry") ;
|
|
|
|
return MyWidth;
|
|
|
|
}
|
|
|
|
void Aspect_WidthMapEntry::SetIndex (const Standard_Integer index) {
|
|
|
|
MyTypeIsDef = Standard_True;
|
|
MyIndex = index;
|
|
|
|
}
|
|
|
|
Standard_Integer Aspect_WidthMapEntry::Index () const {
|
|
|
|
if ( !MyTypeIsDef || !MyIndexIsDef )
|
|
Aspect_BadAccess::Raise("Unallocated WidthMapEntry");
|
|
|
|
return MyIndex;
|
|
|
|
}
|
|
|
|
Standard_Boolean Aspect_WidthMapEntry::IsAllocated () const {
|
|
|
|
return ( MyTypeIsDef && MyIndexIsDef ) ;
|
|
|
|
}
|
|
|
|
void Aspect_WidthMapEntry::Free () {
|
|
|
|
MyTypeIsDef = Standard_False;
|
|
MyIndexIsDef = Standard_False;
|
|
|
|
}
|
|
|
|
void Aspect_WidthMapEntry::Dump () const {
|
|
|
|
cout << " Aspect_WidthMapEntry::Dump ()\n";
|
|
cout << " MyTypeIsDef : " << (MyTypeIsDef ? "True\n" : "False\n");
|
|
cout << " MyIndexIsDef : " << (MyIndexIsDef ? "True\n" : "False\n");
|
|
cout << " TypeOfWidth : " << (Standard_Integer) MyType << "\n";//WNT
|
|
cout << " LineWidth : " << MyWidth << "\n";
|
|
cout << flush;
|
|
}
|
|
|
|
void Aspect_WidthMapEntry::SetPredefinedStyle(const Aspect_WidthOfLine Style) {
|
|
|
|
MyType = Style ;
|
|
MyTypeIsDef = Standard_True;
|
|
switch ( Style ) {
|
|
case Aspect_WOL_USERDEFINED :
|
|
Aspect_BadAccess::Raise("Bad Predefined Line Width Style") ;
|
|
case Aspect_WOL_THIN:
|
|
MyWidth = 0.25 MILLIMETER ;
|
|
break ;
|
|
case Aspect_WOL_MEDIUM :
|
|
MyWidth = 0.5 MILLIMETER ;
|
|
break ;
|
|
case Aspect_WOL_THICK :
|
|
MyWidth = 0.7 MILLIMETER ;
|
|
break ;
|
|
case Aspect_WOL_VERYTHICK :
|
|
MyWidth = 1.5 MILLIMETER ;
|
|
break ;
|
|
}
|
|
}
|