mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-10 18:51:21 +03:00
Automatic upgrade of OCCT code by command "occt_upgrade . -nocdl": - WOK-generated header files from inc and sources from drv are moved to src - CDL files removed - All packages are converted to nocdlpack
105 lines
3.3 KiB
C++
105 lines
3.3 KiB
C++
// Created on: 1993-01-11
|
|
// Created by: CKY / Contract Toubro-Larsen ( Niraj RANGWALA )
|
|
// Copyright (c) 1993-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.
|
|
|
|
#ifndef _IGESGraph_LineFontDefPattern_HeaderFile
|
|
#define _IGESGraph_LineFontDefPattern_HeaderFile
|
|
|
|
#include <Standard.hxx>
|
|
#include <Standard_Type.hxx>
|
|
|
|
#include <TColStd_HArray1OfReal.hxx>
|
|
#include <IGESData_LineFontEntity.hxx>
|
|
#include <Standard_Integer.hxx>
|
|
#include <Standard_Real.hxx>
|
|
#include <Standard_Boolean.hxx>
|
|
class TCollection_HAsciiString;
|
|
class Standard_OutOfRange;
|
|
|
|
|
|
class IGESGraph_LineFontDefPattern;
|
|
DEFINE_STANDARD_HANDLE(IGESGraph_LineFontDefPattern, IGESData_LineFontEntity)
|
|
|
|
//! defines IGESLineFontDefPattern, Type <304> Form <2>
|
|
//! in package IGESGraph
|
|
//!
|
|
//! Line Font may be defined by repetition of a basic pattern
|
|
//! of visible-blank(or, on-off) segments superimposed on
|
|
//! a line or a curve. The line or curve is then displayed
|
|
//! according to the basic pattern.
|
|
class IGESGraph_LineFontDefPattern : public IGESData_LineFontEntity
|
|
{
|
|
|
|
public:
|
|
|
|
|
|
Standard_EXPORT IGESGraph_LineFontDefPattern();
|
|
|
|
//! This method is used to set the fields of the class
|
|
//! LineFontDefPattern
|
|
//! - allSegLength : Containing lengths of respective segments
|
|
//! - aPattern : HAsciiString indicating visible-blank segments
|
|
Standard_EXPORT void Init (const Handle(TColStd_HArray1OfReal)& allSegLength, const Handle(TCollection_HAsciiString)& aPattern);
|
|
|
|
//! returns the number of segments in the visible-blank pattern
|
|
Standard_EXPORT Standard_Integer NbSegments() const;
|
|
|
|
//! returns the Length of Index'th segment of the basic pattern
|
|
//! raises exception if Index <= 0 or Index > NbSegments
|
|
Standard_EXPORT Standard_Real Length (const Standard_Integer Index) const;
|
|
|
|
//! returns the string indicating which segments of the basic
|
|
//! pattern are visible and which are blanked.
|
|
//! e.g:
|
|
//! theNbSegments = 5 and if Bit Pattern = 10110, which means that
|
|
//! segments 2, 3 and 5 are visible, whereas segments 1 and 4 are
|
|
//! blank. The method returns "2H16" as the HAsciiString.
|
|
//! Note: The bits are right justified. (16h = 10110)
|
|
Standard_EXPORT Handle(TCollection_HAsciiString) DisplayPattern() const;
|
|
|
|
//! The Display Pattern is decrypted to
|
|
//! return True if the Index'th basic pattern is Visible,
|
|
//! False otherwise.
|
|
//! If Index > NbSegments or Index <= 0 then return value is
|
|
//! False.
|
|
Standard_EXPORT Standard_Boolean IsVisible (const Standard_Integer Index) const;
|
|
|
|
|
|
|
|
|
|
DEFINE_STANDARD_RTTI(IGESGraph_LineFontDefPattern,IGESData_LineFontEntity)
|
|
|
|
protected:
|
|
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
|
Handle(TColStd_HArray1OfReal) theSegmentLengths;
|
|
Handle(TCollection_HAsciiString) theDisplayPattern;
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#endif // _IGESGraph_LineFontDefPattern_HeaderFile
|