mirror of
https://github.com/Open-Cascade-SAS/OCCT.git
synced 2026-08-25 20:05:43 +08:00
d5f74e42d6
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.
206 lines
6.0 KiB
C++
206 lines
6.0 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.
|
|
|
|
// 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;
|
|
|
|
}
|
|
|
|
|