Home
last modified time | relevance | path

Searched refs:TPointRef (Results 1 – 10 of 10) sorted by relevance

/dports/editors/lazarus/lazarus/components/tachart/
H A Dtadatatools.pas69 function GetPointEnd: TDataPointTool.TPointRef; inline; in GetPointEnd()
70 function GetPointStart: TDataPointTool.TPointRef; in GetPointStart()
94 property PointEnd: TDataPointTool.TPointRef read GetPointEnd;
95 property PointStart: TDataPointTool.TPointRef read GetPointStart;
168 FAnchors[0] := TDataPointTool.TPointRef.Create;
169 FAnchors[1] := TDataPointTool.TPointRef.Create;
290 function TDataPointDistanceTool.GetPointEnd: TDataPointTool.TPointRef; in GetPointEnd()
292 Result := TDataPointTool.TPointRef(FAnchors[High(FAnchors)]);
297 Result := TDataPointTool.TPointRef(FAnchors[0]);
324 newEnd: TPointRef;
[all …]
H A Dtatools.pas384 TPointRef = class class
391 procedure Assign(ASource: TPointRef);
650 procedure TDataPointTool.TPointRef.Assign(ASource: TPointRef); procedure
659 function TDataPointTool.TPointRef.AxisPos( in TPointRef() function
673 procedure TDataPointTool.TPointRef.SetGraphPos(const ANewPos: TDoublePoint); procedure
/dports/editors/lazarus-qt5/lazarus/components/tachart/
H A Dtadatatools.pas69 function GetPointEnd: TDataPointTool.TPointRef; inline; in GetPointEnd()
70 function GetPointStart: TDataPointTool.TPointRef; in GetPointStart()
94 property PointEnd: TDataPointTool.TPointRef read GetPointEnd;
95 property PointStart: TDataPointTool.TPointRef read GetPointStart;
168 FAnchors[0] := TDataPointTool.TPointRef.Create;
169 FAnchors[1] := TDataPointTool.TPointRef.Create;
290 function TDataPointDistanceTool.GetPointEnd: TDataPointTool.TPointRef; in GetPointEnd()
292 Result := TDataPointTool.TPointRef(FAnchors[High(FAnchors)]);
297 Result := TDataPointTool.TPointRef(FAnchors[0]);
324 newEnd: TPointRef;
[all …]
H A Dtatools.pas384 TPointRef = class class
391 procedure Assign(ASource: TPointRef);
650 procedure TDataPointTool.TPointRef.Assign(ASource: TPointRef); procedure
659 function TDataPointTool.TPointRef.AxisPos( in TPointRef() function
673 procedure TDataPointTool.TPointRef.SetGraphPos(const ANewPos: TDoublePoint); procedure
/dports/editors/lazarus-devel/lazarus-6df7e8756882f7d7f28f662011ee72f21746c580/components/tachart/
H A Dtadatatools.pas70 function GetPointEnd: TDataPointTool.TPointRef; inline; in GetPointEnd()
71 function GetPointStart: TDataPointTool.TPointRef; in GetPointStart()
95 property PointEnd: TDataPointTool.TPointRef read GetPointEnd;
96 property PointStart: TDataPointTool.TPointRef read GetPointStart;
169 FAnchors[0] := TDataPointTool.TPointRef.Create;
170 FAnchors[1] := TDataPointTool.TPointRef.Create;
303 function TDataPointDistanceTool.GetPointEnd: TDataPointTool.TPointRef; in GetPointEnd()
305 Result := TDataPointTool.TPointRef(FAnchors[High(FAnchors)]);
310 Result := TDataPointTool.TPointRef(FAnchors[0]);
337 newEnd: TPointRef;
[all …]
H A Dtatools.pas400 TPointRef = class class
407 procedure Assign(ASource: TPointRef);
724 procedure TDataPointTool.TPointRef.Assign(ASource: TPointRef); procedure
733 function TDataPointTool.TPointRef.AxisPos( in TPointRef() function
747 procedure TDataPointTool.TPointRef.SetGraphPos(const ANewPos: TDoublePoint); procedure
/dports/editors/lazarus-qt5-devel/lazarus-6df7e8756882f7d7f28f662011ee72f21746c580/components/tachart/
H A Dtadatatools.pas70 function GetPointEnd: TDataPointTool.TPointRef; inline; in GetPointEnd()
71 function GetPointStart: TDataPointTool.TPointRef; in GetPointStart()
95 property PointEnd: TDataPointTool.TPointRef read GetPointEnd;
96 property PointStart: TDataPointTool.TPointRef read GetPointStart;
169 FAnchors[0] := TDataPointTool.TPointRef.Create;
170 FAnchors[1] := TDataPointTool.TPointRef.Create;
303 function TDataPointDistanceTool.GetPointEnd: TDataPointTool.TPointRef; in GetPointEnd()
305 Result := TDataPointTool.TPointRef(FAnchors[High(FAnchors)]);
310 Result := TDataPointTool.TPointRef(FAnchors[0]);
337 newEnd: TPointRef;
[all …]
H A Dtatools.pas400 TPointRef = class class
407 procedure Assign(ASource: TPointRef);
724 procedure TDataPointTool.TPointRef.Assign(ASource: TPointRef); procedure
733 function TDataPointTool.TPointRef.AxisPos( in TPointRef() function
747 procedure TDataPointTool.TPointRef.SetGraphPos(const ANewPos: TDoublePoint); procedure
/dports/math/saga/saga-8.1.3/saga-gis/src/tools/shapes/shapes_lines_ex/
H A DLineApproximator.h84 class TPointRef
88 TPointRef():x(xDummy),y(yDummy){}; in TPointRef() function
94 TPointRef(T& _x, T& _y):x(_x),y(_y){}; in TPointRef() function
96 TPointRef<T>& operator = (const TPointRef<T>& t) { if (this != &t){ x=t.x;y=t.y;} return *this;};
98 TPointRef<T>& operator = (TPoint<T> t) { x=t.x;y=t.y; return *this;};
108 template<typename T> T TPointRef<T>::xDummy=0;
109 template<typename T> T TPointRef<T>::yDummy=0;
H A DContainers.h37 typedef TPointRef<T> reference;
153 TPointRef<T> operator*()
157 return TPointRef<T>( (*m_pV->GetXContainer())[m_index], (*m_pV->GetYContainer())[m_index]);