mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-26 10:19:45 +03:00
210 lines
6.3 KiB
C++
Executable File
210 lines
6.3 KiB
C++
Executable File
// Copyright (c) 1995-1999 Matra Datavision
|
|
// Copyright (c) 1999-2012 OPEN CASCADE SAS
|
|
//
|
|
// The content of this file is subject to the Open CASCADE Technology Public
|
|
// License Version 6.5 (the "License"). You may not use the content of this file
|
|
// except in compliance with the License. Please obtain a copy of the License
|
|
// at http://www.opencascade.org and read it completely before using this file.
|
|
//
|
|
// The Initial Developer of the Original Code is Open CASCADE S.A.S., having its
|
|
// main offices at: 1, place des Freres Montgolfier, 78280 Guyancourt, France.
|
|
//
|
|
// The Original Code and all software distributed under the License is
|
|
// distributed on an "AS IS" basis, without warranty of any kind, and the
|
|
// Initial Developer hereby disclaims all such warranties, including without
|
|
// limitation, any warranties of merchantability, fitness for a particular
|
|
// purpose or non-infringement. Please see the License for the specific terms
|
|
// and conditions governing the rights and limitations under the License.
|
|
|
|
// AppDef_MyLineTool.cxx
|
|
|
|
#include <AppDef_MyLineTool.ixx>
|
|
#include <AppDef_MultiPointConstraint.hxx>
|
|
#include <gp_Pnt.hxx>
|
|
#include <gp_Pnt2d.hxx>
|
|
#include <gp_Vec.hxx>
|
|
#include <gp_Vec2d.hxx>
|
|
|
|
Standard_Integer AppDef_MyLineTool::FirstPoint(const AppDef_MultiLine&)
|
|
{
|
|
return 1;
|
|
}
|
|
|
|
Standard_Integer AppDef_MyLineTool::LastPoint(const AppDef_MultiLine& ML)
|
|
{
|
|
return ML.NbMultiPoints();
|
|
}
|
|
|
|
Standard_Integer AppDef_MyLineTool::NbP2d(const AppDef_MultiLine& ML)
|
|
{
|
|
return ML.Value(1).NbPoints2d();
|
|
}
|
|
|
|
Standard_Integer AppDef_MyLineTool::NbP3d(const AppDef_MultiLine& ML)
|
|
{
|
|
return ML.Value(1).NbPoints();
|
|
}
|
|
|
|
|
|
void AppDef_MyLineTool::Value(const AppDef_MultiLine& ML,
|
|
const Standard_Integer MPointIndex,
|
|
TColgp_Array1OfPnt& tabPt)
|
|
{
|
|
AppDef_MultiPointConstraint MPC = ML.Value(MPointIndex);
|
|
Standard_Integer nbp3d = MPC.NbPoints(), low = tabPt.Lower();
|
|
for (Standard_Integer i = 1; i <= nbp3d; i++) {
|
|
tabPt(i+low-1) = MPC.Point(i);
|
|
}
|
|
}
|
|
|
|
void AppDef_MyLineTool::Value(const AppDef_MultiLine& ML,
|
|
const Standard_Integer MPointIndex,
|
|
TColgp_Array1OfPnt2d& tabPt2d)
|
|
{
|
|
AppDef_MultiPointConstraint MPC = ML.Value(MPointIndex);
|
|
Standard_Integer nbp2d = MPC.NbPoints2d(), low = tabPt2d.Lower();
|
|
for (Standard_Integer i = 1; i <= nbp2d; i++) {
|
|
tabPt2d(i+low-1) = MPC.Point2d(i);
|
|
}
|
|
}
|
|
|
|
void AppDef_MyLineTool::Value(const AppDef_MultiLine& ML,
|
|
const Standard_Integer MPointIndex,
|
|
TColgp_Array1OfPnt& tabPt,
|
|
TColgp_Array1OfPnt2d& tabPt2d)
|
|
{
|
|
AppDef_MultiPointConstraint MPC = ML.Value(MPointIndex);
|
|
Standard_Integer i, nbp2d = MPC.NbPoints2d(), low2d = tabPt2d.Lower();
|
|
Standard_Integer nbp3d = MPC.NbPoints(), low = tabPt.Lower();
|
|
for (i = 1; i <= nbp3d; i++) {
|
|
tabPt(i+low-1) = MPC.Point(i);
|
|
}
|
|
for (i = 1; i <= nbp2d; i++) {
|
|
tabPt2d(i+low2d-1) = MPC.Point2d(nbp3d+i);
|
|
}
|
|
}
|
|
|
|
|
|
Standard_Boolean AppDef_MyLineTool::Tangency(const AppDef_MultiLine& ML,
|
|
const Standard_Integer MPointIndex,
|
|
TColgp_Array1OfVec& tabV)
|
|
{
|
|
AppDef_MultiPointConstraint MPC = ML.Value(MPointIndex);
|
|
if (MPC.IsTangencyPoint()) {
|
|
Standard_Integer nbp3d = MPC.NbPoints(), low = tabV.Lower();
|
|
for (Standard_Integer i = 1; i <= nbp3d; i++) {
|
|
tabV(i+low-1) = MPC.Tang(i);
|
|
}
|
|
return Standard_True;
|
|
}
|
|
else return Standard_False;
|
|
}
|
|
|
|
Standard_Boolean AppDef_MyLineTool::Tangency(const AppDef_MultiLine& ML,
|
|
const Standard_Integer MPointIndex,
|
|
TColgp_Array1OfVec2d& tabV2d)
|
|
{
|
|
AppDef_MultiPointConstraint MPC = ML.Value(MPointIndex);
|
|
if (MPC.IsTangencyPoint()) {
|
|
Standard_Integer nbp2d = MPC.NbPoints2d(), low = tabV2d.Lower();
|
|
for (Standard_Integer i = 1; i <= nbp2d; i++) {
|
|
tabV2d(i+low-1) = MPC.Tang2d(i);
|
|
}
|
|
return Standard_True;
|
|
}
|
|
else return Standard_False;
|
|
}
|
|
|
|
Standard_Boolean AppDef_MyLineTool::Tangency(const AppDef_MultiLine& ML,
|
|
const Standard_Integer MPointIndex,
|
|
TColgp_Array1OfVec& tabV,
|
|
TColgp_Array1OfVec2d& tabV2d)
|
|
{
|
|
AppDef_MultiPointConstraint MPC = ML.Value(MPointIndex);
|
|
if (MPC.IsTangencyPoint()) {
|
|
Standard_Integer i, nbp3d = MPC.NbPoints(), low = tabV.Lower();
|
|
Standard_Integer nbp2d = MPC.NbPoints2d(), low2d = tabV2d.Lower();
|
|
for (i = 1; i <= nbp3d; i++) {
|
|
tabV(i+low-1) = MPC.Tang(i);
|
|
}
|
|
for (i = 1; i <= nbp2d; i++) {
|
|
tabV2d(i+low2d-1) = MPC.Tang2d(nbp3d+i);
|
|
}
|
|
return Standard_True;
|
|
}
|
|
else return Standard_False;
|
|
|
|
}
|
|
|
|
|
|
AppDef_MultiLine& AppDef_MyLineTool::MakeMLBetween(const AppDef_MultiLine&,
|
|
const Standard_Integer ,
|
|
const Standard_Integer ,
|
|
const Standard_Integer )
|
|
{
|
|
return *((AppDef_MultiLine*) 0);
|
|
}
|
|
|
|
Approx_Status AppDef_MyLineTool::WhatStatus(const AppDef_MultiLine&,
|
|
const Standard_Integer,
|
|
const Standard_Integer)
|
|
{
|
|
return Approx_NoPointsAdded;
|
|
}
|
|
|
|
|
|
Standard_Boolean AppDef_MyLineTool::Curvature(const AppDef_MultiLine& ML,
|
|
const Standard_Integer MPointIndex,
|
|
TColgp_Array1OfVec& tabV)
|
|
{
|
|
AppDef_MultiPointConstraint MPC = ML.Value(MPointIndex);
|
|
if (MPC.IsCurvaturePoint()) {
|
|
Standard_Integer nbp3d = MPC.NbPoints(), low = tabV.Lower();
|
|
for (Standard_Integer i = 1; i <= nbp3d; i++) {
|
|
tabV(i+low-1) = MPC.Curv(i);
|
|
}
|
|
return Standard_True;
|
|
}
|
|
else return Standard_False;
|
|
}
|
|
|
|
Standard_Boolean AppDef_MyLineTool::Curvature(const AppDef_MultiLine& ML,
|
|
const Standard_Integer MPointIndex,
|
|
TColgp_Array1OfVec2d& tabV2d)
|
|
{
|
|
AppDef_MultiPointConstraint MPC = ML.Value(MPointIndex);
|
|
if (MPC.IsCurvaturePoint()) {
|
|
Standard_Integer nbp2d = MPC.NbPoints2d(), low = tabV2d.Lower();
|
|
for (Standard_Integer i = 1; i <= nbp2d; i++) {
|
|
tabV2d(i+low-1) = MPC.Curv2d(i);
|
|
}
|
|
return Standard_True;
|
|
}
|
|
else return Standard_False;
|
|
}
|
|
|
|
|
|
Standard_Boolean AppDef_MyLineTool::Curvature(const AppDef_MultiLine& ML,
|
|
const Standard_Integer MPointIndex,
|
|
TColgp_Array1OfVec& tabV,
|
|
TColgp_Array1OfVec2d& tabV2d)
|
|
|
|
{
|
|
AppDef_MultiPointConstraint MPC = ML.Value(MPointIndex);
|
|
if (MPC.IsCurvaturePoint()) {
|
|
Standard_Integer i, nbp3d = MPC.NbPoints(), low = tabV.Lower();
|
|
Standard_Integer nbp2d = MPC.NbPoints2d(), low2d = tabV2d.Lower();
|
|
for (i = 1; i <= nbp3d; i++) {
|
|
tabV(i+low-1) = MPC.Curv(i);
|
|
}
|
|
for (i = 1; i <= nbp2d; i++) {
|
|
tabV2d(i+low2d-1) = MPC.Curv2d(nbp3d+i);
|
|
}
|
|
return Standard_True;
|
|
}
|
|
else return Standard_False;
|
|
|
|
}
|
|
|
|
|