mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-06 18:26:22 +03:00
Methods Init() in STEP data classes are made non-virtual, redundant variants just calling the same method of the base class are removed. A few places where removed method have been called are corrected.
83 lines
2.2 KiB
C++
83 lines
2.2 KiB
C++
// Created on: 1995-12-01
|
|
// Created by: EXPRESS->CDL V0.2 Translator
|
|
// 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.
|
|
|
|
#ifndef _StepGeom_CartesianPoint_HeaderFile
|
|
#define _StepGeom_CartesianPoint_HeaderFile
|
|
|
|
#include <Standard.hxx>
|
|
#include <Standard_Type.hxx>
|
|
|
|
#include <Standard_Integer.hxx>
|
|
#include <Standard_Real.hxx>
|
|
#include <StepGeom_Point.hxx>
|
|
#include <TColStd_HArray1OfReal.hxx>
|
|
class TCollection_HAsciiString;
|
|
|
|
|
|
class StepGeom_CartesianPoint;
|
|
DEFINE_STANDARD_HANDLE(StepGeom_CartesianPoint, StepGeom_Point)
|
|
|
|
|
|
class StepGeom_CartesianPoint : public StepGeom_Point
|
|
{
|
|
|
|
public:
|
|
|
|
|
|
//! Returns a CartesianPoint
|
|
Standard_EXPORT StepGeom_CartesianPoint();
|
|
|
|
Standard_EXPORT void Init (const Handle(TCollection_HAsciiString)& aName, const Handle(TColStd_HArray1OfReal)& aCoordinates);
|
|
|
|
Standard_EXPORT void Init2D (const Handle(TCollection_HAsciiString)& aName, const Standard_Real X, const Standard_Real Y);
|
|
|
|
Standard_EXPORT void Init3D (const Handle(TCollection_HAsciiString)& aName, const Standard_Real X, const Standard_Real Y, const Standard_Real Z);
|
|
|
|
Standard_EXPORT void SetCoordinates (const Handle(TColStd_HArray1OfReal)& aCoordinates);
|
|
|
|
Standard_EXPORT Handle(TColStd_HArray1OfReal) Coordinates() const;
|
|
|
|
Standard_EXPORT Standard_Real CoordinatesValue (const Standard_Integer num) const;
|
|
|
|
Standard_EXPORT Standard_Integer NbCoordinates() const;
|
|
|
|
|
|
|
|
|
|
DEFINE_STANDARD_RTTIEXT(StepGeom_CartesianPoint,StepGeom_Point)
|
|
|
|
protected:
|
|
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
|
Standard_Integer nbcoord;
|
|
Standard_Real coords[3];
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#endif // _StepGeom_CartesianPoint_HeaderFile
|