summaryrefslogtreecommitdiff
path: root/inc/ApproxInt_MultiLineTool.lxx
blob: d0216c0918038521dd30bdedd5ef3d895a5a0e62 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
// File:	ApproxInt_ApproxInt_MultiLineTool.lxx
// Created:	Tue Mar  30 17:05:43 1993
// Author:	Laurent BUCHARD
//		<lbr@topsn3>


#include TheMultiLine_hxx

#include <TColgp_Array1OfPnt.hxx>
#include <TColgp_Array1OfPnt2d.hxx>
#include <TColgp_Array1OfVec.hxx>
#include <TColgp_Array1OfVec2d.hxx>

#include <Approx_Status.hxx>

//================================================================================
inline Standard_Integer ApproxInt_MultiLineTool::NbP2d(const TheMultiLine& ML) { 
  return(ML.NbP2d());
}
//--------------------------------------------------------------------------------
inline Standard_Integer ApproxInt_MultiLineTool::NbP3d(const TheMultiLine& ML) { 
  return(ML.NbP3d()); 
}
//--------------------------------------------------------------------------------
inline Standard_Integer ApproxInt_MultiLineTool::FirstPoint(const TheMultiLine& ML) { 
  return(ML.FirstPoint());
}
//--------------------------------------------------------------------------------
inline Standard_Integer ApproxInt_MultiLineTool::LastPoint(const TheMultiLine& ML) { 
  return(ML.LastPoint());
}
//--------------------------------------------------------------------------------
inline void ApproxInt_MultiLineTool::Value( const TheMultiLine&     ML
					   ,const Standard_Integer Index
					   ,TColgp_Array1OfPnt&        TabPnt) { 
  ML.Value(Index,TabPnt);
}
//--------------------------------------------------------------------------------
inline void ApproxInt_MultiLineTool::Value( const TheMultiLine&     ML
					   ,const Standard_Integer Index
					   ,TColgp_Array1OfPnt2d&       TabPnt2d) { 
  ML.Value(Index,TabPnt2d);
}
//--------------------------------------------------------------------------------
inline void ApproxInt_MultiLineTool::Value( const TheMultiLine&     ML
					   ,const Standard_Integer Index
					   ,TColgp_Array1OfPnt&        TabPnt
					   ,TColgp_Array1OfPnt2d&      TabPnt2d) { 
  ML.Value(Index,TabPnt,TabPnt2d);
}
//--------------------------------------------------------------------------------
inline Standard_Boolean ApproxInt_MultiLineTool::Tangency( const TheMultiLine&    ML
							  ,const Standard_Integer Index
							  ,TColgp_Array1OfVec&        TabVec) { 
  return(ML.Tangency(Index,TabVec));
}
//--------------------------------------------------------------------------------
inline Standard_Boolean ApproxInt_MultiLineTool::Tangency( const TheMultiLine&     ML
							  ,const Standard_Integer Index
							  ,TColgp_Array1OfVec2d&      TabVec2d) { 
  return(ML.Tangency(Index,TabVec2d));
}
//--------------------------------------------------------------------------------
inline Standard_Boolean ApproxInt_MultiLineTool::Tangency( const TheMultiLine&     ML
							  ,const Standard_Integer Index
							  ,TColgp_Array1OfVec&        TabVec
							  ,TColgp_Array1OfVec2d&      TabVec2d) { 
  return(ML.Tangency(Index,TabVec,TabVec2d));
}

//--------------------------------------------------------------------------------
inline Standard_Boolean ApproxInt_MultiLineTool::Curvature( const TheMultiLine&     //ML
							  ,const Standard_Integer   //Index
							  ,TColgp_Array1OfVec&  ) { //TabVec 
  return Standard_False;
}
//--------------------------------------------------------------------------------
inline Standard_Boolean ApproxInt_MultiLineTool::Curvature( const TheMultiLine&      //ML
							  ,const Standard_Integer    //Index
							  ,TColgp_Array1OfVec2d& ) { //TabVec2d
  return Standard_False;
}
//--------------------------------------------------------------------------------
inline Standard_Boolean ApproxInt_MultiLineTool::Curvature( const TheMultiLine&      //ML
							  ,const Standard_Integer    //Index
							  ,TColgp_Array1OfVec&       //TabVec
							  ,TColgp_Array1OfVec2d& ) { //TabVec2d
  return Standard_False;
}
//--------------------------------------------------------------------------------
inline Approx_Status ApproxInt_MultiLineTool::WhatStatus(const TheMultiLine& ML
							 ,const Standard_Integer
							 ,const Standard_Integer) { 
  //--  PointsAdded,
  //--  NoPointsAdded,
  //--  NoApproximation
  //--  Approx_PointsAdded
  return(ML.WhatStatus());
}
//--------------------------------------------------------------------------------	
inline TheMultiLine ApproxInt_MultiLineTool::MakeMLBetween(const TheMultiLine& ML,
							   const Standard_Integer I1,
							   const Standard_Integer I2,
							   const Standard_Integer NbPMin) { 
  
  return(ML.MakeMLBetween(I1,I2,NbPMin));
}
//================================================================================