mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-04 18:06:22 +03:00
Add new option to convert input contours into ones consisting of 2D circular arcs and 2D linear segments only. Update documentation
26 lines
934 B
C++
26 lines
934 B
C++
// Created: 2009-01-09
|
|
//
|
|
// Copyright (c) 2009-2013 OPEN CASCADE SAS
|
|
//
|
|
// This file is part of commercial software by OPEN CASCADE SAS,
|
|
// furnished in accordance with the terms and conditions of the contract
|
|
// and with the inclusion of this copyright notice.
|
|
// This file or any part thereof may not be provided or otherwise
|
|
// made available to any third party.
|
|
//
|
|
// No ownership title to the software is transferred hereby.
|
|
//
|
|
// OPEN CASCADE SAS makes no representation or warranties with respect to the
|
|
// performance of this software, and specifically disclaims any responsibility
|
|
// for any damages, special or consequential, connected with its use.
|
|
|
|
#ifndef _Geom2dConvert_SequenceOfPPoint_HeaderFile
|
|
#define _Geom2dConvert_SequenceOfPPoint_HeaderFile
|
|
|
|
#include <NCollection_Sequence.hxx>
|
|
class Geom2dConvert_PPoint;
|
|
|
|
typedef NCollection_Sequence<Geom2dConvert_PPoint> Geom2dConvert_SequenceOfPPoint;
|
|
|
|
#endif
|