mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-06 02:57:59 +02:00
Misc packages: Replace separate calls to sin() and cos() by sincos(). Issue #40473.
This commit is contained in:
parent
493a568bb0
commit
f3c4d7f58d
@ -635,6 +635,8 @@ end;
|
|||||||
|
|
||||||
//C* - center, R* - halfaxis
|
//C* - center, R* - halfaxis
|
||||||
procedure TCairoPrinterCanvas.EllipseArcPath(CX, CY, RX, RY: Double; Angle1, Angle2: Double; Clockwise, Continuous: Boolean);
|
procedure TCairoPrinterCanvas.EllipseArcPath(CX, CY, RX, RY: Double; Angle1, Angle2: Double; Clockwise, Continuous: Boolean);
|
||||||
|
var
|
||||||
|
sinAngle1, cosAngle1: Double;
|
||||||
begin
|
begin
|
||||||
if (RX=0) or (RY=0) then //cairo_scale do not likes zero params
|
if (RX=0) or (RY=0) then //cairo_scale do not likes zero params
|
||||||
Exit;
|
Exit;
|
||||||
@ -643,7 +645,10 @@ begin
|
|||||||
cairo_translate(cr, SX(CX), SY(CY));
|
cairo_translate(cr, SX(CX), SY(CY));
|
||||||
cairo_scale(cr, SX2(RX), SY2(RY));
|
cairo_scale(cr, SX2(RX), SY2(RY));
|
||||||
if not Continuous then
|
if not Continuous then
|
||||||
cairo_move_to(cr, cos(Angle1), sin(Angle1)); //Move to arcs starting point
|
begin
|
||||||
|
SinCos(Angle1, sinAngle1, cosAngle1);
|
||||||
|
cairo_move_to(cr, cosAngle1, sinAngle1); //Move to arcs starting point
|
||||||
|
end;
|
||||||
if Clockwise then
|
if Clockwise then
|
||||||
cairo_arc(cr, 0, 0, 1, Angle1, Angle2)
|
cairo_arc(cr, 0, 0, 1, Angle1, Angle2)
|
||||||
else
|
else
|
||||||
|
@ -268,7 +268,7 @@ var
|
|||||||
OuterCnt: integer;
|
OuterCnt: integer;
|
||||||
centerx, centery: single;
|
centerx, centery: single;
|
||||||
i: Integer;
|
i: Integer;
|
||||||
Ang: single;
|
Ang, sinAng, cosAng: single;
|
||||||
OuterRadiusX, OuterRadiusY, InnerRadiusX, InnerRadiusY: single;
|
OuterRadiusX, OuterRadiusY, InnerRadiusX, InnerRadiusY: single;
|
||||||
Points: array of TPoint;
|
Points: array of TPoint;
|
||||||
j: Integer;
|
j: Integer;
|
||||||
@ -286,16 +286,18 @@ begin
|
|||||||
for i:=0 to OuterCnt do begin
|
for i:=0 to OuterCnt do begin
|
||||||
Ang:=StartAngle+((EndAngle-StartAngle)/OuterCnt)*single(i);
|
Ang:=StartAngle+((EndAngle-StartAngle)/OuterCnt)*single(i);
|
||||||
Ang:=(Ang/FullCircle16)*2*pi;
|
Ang:=(Ang/FullCircle16)*2*pi;
|
||||||
Points[j].x:=round(centerx+cos(Ang)*OuterRadiusX);
|
SinCos(Ang, sinAng, cosAng);
|
||||||
Points[j].y:=round(centery-sin(Ang)*OuterRadiusY);
|
Points[j].x:=round(centerx+cosAng*OuterRadiusX);
|
||||||
|
Points[j].y:=round(centery-sinAng*OuterRadiusY);
|
||||||
inc(j);
|
inc(j);
|
||||||
end;
|
end;
|
||||||
// inner arc
|
// inner arc
|
||||||
for i:=OuterCnt downto 0 do begin
|
for i:=OuterCnt downto 0 do begin
|
||||||
Ang:=StartAngle+((EndAngle-StartAngle)/OuterCnt)*single(i);
|
Ang:=StartAngle+((EndAngle-StartAngle)/OuterCnt)*single(i);
|
||||||
Ang:=(Ang/FullCircle16)*2*pi;
|
Ang:=(Ang/FullCircle16)*2*pi;
|
||||||
Points[j].x:=round(centerx+cos(Ang)*InnerRadiusX);
|
SinCos(Ang, sinAng, cosAng);
|
||||||
Points[j].y:=round(centery-sin(Ang)*InnerRadiusY);
|
Points[j].x:=round(centerx+cosAng*InnerRadiusX);
|
||||||
|
Points[j].y:=round(centery-sinAng*InnerRadiusY);
|
||||||
inc(j);
|
inc(j);
|
||||||
end;
|
end;
|
||||||
Canvas.Polygon(Points);
|
Canvas.Polygon(Points);
|
||||||
|
@ -3029,7 +3029,7 @@ procedure T2DEllipticalArcSegment.CalculateCenter;
|
|||||||
var
|
var
|
||||||
XStart, YStart, lT1: Double;
|
XStart, YStart, lT1: Double;
|
||||||
CX1, CY1, CX2, CY2, LeftMostX, LeftMostY, RightMostX, RightMostY: Double;
|
CX1, CY1, CX2, CY2, LeftMostX, LeftMostY, RightMostX, RightMostY: Double;
|
||||||
Sin0, Cos0, SinXRot, CosXRot, SinLT1, CosLT1: Double;
|
SinXRot, CosXRot, SinLT1, CosLT1: Double;
|
||||||
RotatedCenter: T3DPoint;
|
RotatedCenter: T3DPoint;
|
||||||
begin
|
begin
|
||||||
if CenterSetByUser then Exit;
|
if CenterSetByUser then Exit;
|
||||||
@ -3043,10 +3043,13 @@ begin
|
|||||||
|
|
||||||
if Previous = nil then
|
if Previous = nil then
|
||||||
begin
|
begin
|
||||||
SinCos(0.0, Sin0, Cos0);
|
|
||||||
SinCos(XRotation, SinXRot, CosXRot);
|
SinCos(XRotation, SinXRot, CosXRot);
|
||||||
|
{
|
||||||
CX := X - RX*Cos0*CosXRot + RY*Sin0*SinXRot;
|
CX := X - RX*Cos0*CosXRot + RY*Sin0*SinXRot;
|
||||||
CY := Y - RY*Sin0*CosXRot - RX*Cos0*SinXRot;
|
CY := Y - RY*Sin0*CosXRot - RX*Cos0*SinXRot;
|
||||||
|
}
|
||||||
|
CX := X - RX*CosXRot;
|
||||||
|
CY := Y - RX*SinXRot;
|
||||||
Exit;
|
Exit;
|
||||||
end;
|
end;
|
||||||
|
|
||||||
|
@ -6,11 +6,11 @@ object MainForm: TMainForm
|
|||||||
Caption = 'Visual fpvectorial test'
|
Caption = 'Visual fpvectorial test'
|
||||||
ClientHeight = 700
|
ClientHeight = 700
|
||||||
ClientWidth = 900
|
ClientWidth = 900
|
||||||
|
ShowHint = True
|
||||||
|
LCLVersion = '3.99.0.0'
|
||||||
OnActivate = FormActivate
|
OnActivate = FormActivate
|
||||||
OnCreate = FormCreate
|
OnCreate = FormCreate
|
||||||
OnDestroy = FormDestroy
|
OnDestroy = FormDestroy
|
||||||
ShowHint = True
|
|
||||||
LCLVersion = '2.3.0.0'
|
|
||||||
object GbTree: TGroupBox
|
object GbTree: TGroupBox
|
||||||
Left = 8
|
Left = 8
|
||||||
Height = 684
|
Height = 684
|
||||||
@ -37,12 +37,12 @@ object MainForm: TMainForm
|
|||||||
ReadOnly = True
|
ReadOnly = True
|
||||||
StateImages = ImageList
|
StateImages = ImageList
|
||||||
TabOrder = 0
|
TabOrder = 0
|
||||||
|
Options = [tvoAutoItemHeight, tvoKeepCollapsedNodes, tvoReadOnly, tvoShowButtons, tvoShowLines, tvoShowRoot, tvoToolTips, tvoThemedDraw]
|
||||||
OnCustomDrawItem = TreeCustomDrawItem
|
OnCustomDrawItem = TreeCustomDrawItem
|
||||||
OnDeletion = TreeDeletion
|
OnDeletion = TreeDeletion
|
||||||
OnGetImageIndex = TreeGetImageIndex
|
OnGetImageIndex = TreeGetImageIndex
|
||||||
OnGetSelectedIndex = TreeGetSelectedIndex
|
OnGetSelectedIndex = TreeGetSelectedIndex
|
||||||
OnSelectionChanged = TreeSelectionChanged
|
OnSelectionChanged = TreeSelectionChanged
|
||||||
Options = [tvoAutoItemHeight, tvoKeepCollapsedNodes, tvoReadOnly, tvoShowButtons, tvoShowLines, tvoShowRoot, tvoToolTips, tvoThemedDraw]
|
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
object ScrollBox1: TScrollBox
|
object ScrollBox1: TScrollBox
|
||||||
@ -231,9 +231,9 @@ object MainForm: TMainForm
|
|||||||
BorderSpacing.Top = 8
|
BorderSpacing.Top = 8
|
||||||
BorderSpacing.Bottom = 8
|
BorderSpacing.Bottom = 8
|
||||||
Caption = 'Save as ref'
|
Caption = 'Save as ref'
|
||||||
OnClick = BtnSaveAsRefClick
|
|
||||||
ParentFont = False
|
ParentFont = False
|
||||||
TabOrder = 2
|
TabOrder = 2
|
||||||
|
OnClick = BtnSaveAsRefClick
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
object gbReferenceImageTest: TGroupBox
|
object gbReferenceImageTest: TGroupBox
|
||||||
@ -408,8 +408,8 @@ object MainForm: TMainForm
|
|||||||
BorderSpacing.Right = 4
|
BorderSpacing.Right = 4
|
||||||
BorderSpacing.Bottom = 6
|
BorderSpacing.Bottom = 6
|
||||||
Caption = 'Ext viewer...'
|
Caption = 'Ext viewer...'
|
||||||
OnClick = BtnViewImageClick
|
|
||||||
TabOrder = 0
|
TabOrder = 0
|
||||||
|
OnClick = BtnViewImageClick
|
||||||
end
|
end
|
||||||
object WRBottomLeftPaintbox: TPaintBox
|
object WRBottomLeftPaintbox: TPaintBox
|
||||||
AnchorSideLeft.Control = gbWRBottomLeft
|
AnchorSideLeft.Control = gbWRBottomLeft
|
||||||
@ -469,11 +469,11 @@ object MainForm: TMainForm
|
|||||||
'svg'
|
'svg'
|
||||||
'wmf'
|
'wmf'
|
||||||
)
|
)
|
||||||
OnChange = CbFileFormatChange
|
|
||||||
ParentFont = False
|
ParentFont = False
|
||||||
Style = csDropDownList
|
Style = csDropDownList
|
||||||
TabOrder = 1
|
TabOrder = 1
|
||||||
Text = 'svg'
|
Text = 'svg'
|
||||||
|
OnChange = CbFileFormatChange
|
||||||
end
|
end
|
||||||
object Label1: TLabel
|
object Label1: TLabel
|
||||||
AnchorSideLeft.Control = LblReadWriteInstructions
|
AnchorSideLeft.Control = LblReadWriteInstructions
|
||||||
@ -505,9 +505,9 @@ object MainForm: TMainForm
|
|||||||
BorderSpacing.Right = 8
|
BorderSpacing.Right = 8
|
||||||
BorderSpacing.Bottom = 6
|
BorderSpacing.Bottom = 6
|
||||||
Caption = 'Save && load'
|
Caption = 'Save && load'
|
||||||
OnClick = BtnSaveToFilesClick
|
|
||||||
ParentFont = False
|
ParentFont = False
|
||||||
TabOrder = 2
|
TabOrder = 2
|
||||||
|
OnClick = BtnSaveToFilesClick
|
||||||
end
|
end
|
||||||
object gbWRTopLeft: TGroupBox
|
object gbWRTopLeft: TGroupBox
|
||||||
AnchorSideLeft.Control = gbWRBottomLeft
|
AnchorSideLeft.Control = gbWRBottomLeft
|
||||||
@ -541,8 +541,8 @@ object MainForm: TMainForm
|
|||||||
BorderSpacing.Right = 4
|
BorderSpacing.Right = 4
|
||||||
BorderSpacing.Bottom = 6
|
BorderSpacing.Bottom = 6
|
||||||
Caption = 'Ext. viewer...'
|
Caption = 'Ext. viewer...'
|
||||||
OnClick = BtnViewImageClick
|
|
||||||
TabOrder = 0
|
TabOrder = 0
|
||||||
|
OnClick = BtnViewImageClick
|
||||||
end
|
end
|
||||||
object WRTopLeftPaintbox: TPaintBox
|
object WRTopLeftPaintbox: TPaintBox
|
||||||
AnchorSideLeft.Control = gbWRTopLeft
|
AnchorSideLeft.Control = gbWRTopLeft
|
||||||
@ -589,10 +589,10 @@ object MainForm: TMainForm
|
|||||||
BorderSpacing.Bottom = 8
|
BorderSpacing.Bottom = 8
|
||||||
Caption = 'unknown'
|
Caption = 'unknown'
|
||||||
Checked = True
|
Checked = True
|
||||||
OnChange = ResultStateChange
|
|
||||||
ParentFont = False
|
ParentFont = False
|
||||||
TabOrder = 2
|
TabOrder = 2
|
||||||
TabStop = True
|
TabStop = True
|
||||||
|
OnChange = ResultStateChange
|
||||||
end
|
end
|
||||||
object imgUnknown: TImage
|
object imgUnknown: TImage
|
||||||
AnchorSideLeft.Control = rbUnknown
|
AnchorSideLeft.Control = rbUnknown
|
||||||
@ -620,9 +620,9 @@ object MainForm: TMainForm
|
|||||||
Width = 54
|
Width = 54
|
||||||
BorderSpacing.Left = 32
|
BorderSpacing.Left = 32
|
||||||
Caption = 'passed'
|
Caption = 'passed'
|
||||||
OnChange = ResultStateChange
|
|
||||||
ParentFont = False
|
ParentFont = False
|
||||||
TabOrder = 0
|
TabOrder = 0
|
||||||
|
OnChange = ResultStateChange
|
||||||
end
|
end
|
||||||
object ImgPassed: TImage
|
object ImgPassed: TImage
|
||||||
AnchorSideLeft.Control = rbPassed
|
AnchorSideLeft.Control = rbPassed
|
||||||
@ -651,9 +651,9 @@ object MainForm: TMainForm
|
|||||||
Width = 47
|
Width = 47
|
||||||
BorderSpacing.Left = 32
|
BorderSpacing.Left = 32
|
||||||
Caption = 'failed'
|
Caption = 'failed'
|
||||||
OnChange = ResultStateChange
|
|
||||||
ParentFont = False
|
ParentFont = False
|
||||||
TabOrder = 1
|
TabOrder = 1
|
||||||
|
OnChange = ResultStateChange
|
||||||
end
|
end
|
||||||
object ImgFailed: TImage
|
object ImgFailed: TImage
|
||||||
AnchorSideLeft.Control = rbFailed
|
AnchorSideLeft.Control = rbFailed
|
||||||
|
@ -10,7 +10,7 @@ unit vtmain;
|
|||||||
|
|
||||||
interface
|
interface
|
||||||
|
|
||||||
uses lazlogger,
|
uses
|
||||||
Classes, SysUtils, FileUtil, Forms, Controls, Graphics, Dialogs, StdCtrls,
|
Classes, SysUtils, FileUtil, Forms, Controls, Graphics, Dialogs, StdCtrls,
|
||||||
ExtCtrls, ComCtrls, Buttons, fpimage, fpvectorial, Types;
|
ExtCtrls, ComCtrls, Buttons, fpimage, fpvectorial, Types;
|
||||||
|
|
||||||
@ -596,7 +596,7 @@ var
|
|||||||
isReversed, isClockwise, isEllipse, isRotated: Boolean;
|
isReversed, isClockwise, isEllipse, isRotated: Boolean;
|
||||||
p: T3dPoint;
|
p: T3dPoint;
|
||||||
x1, y1, x2, y2, rx, ry: Double;
|
x1, y1, x2, y2, rx, ry: Double;
|
||||||
startAngle, endAngle, phi: Double;
|
startAngle, endAngle, phi, sinAngle, cosAngle: Double;
|
||||||
arc: TPath;
|
arc: TPath;
|
||||||
txt1, txt2: TvText;
|
txt1, txt2: TvText;
|
||||||
begin
|
begin
|
||||||
@ -611,10 +611,12 @@ begin
|
|||||||
|
|
||||||
startAngle := DegToRad((AIntParam and $000F) * 45); // 0°, 45°, 90°, ...
|
startAngle := DegToRad((AIntParam and $000F) * 45); // 0°, 45°, 90°, ...
|
||||||
endAngle := startAngle + pi/2; // 90°, 135°, 180°, ...
|
endAngle := startAngle + pi/2; // 90°, 135°, 180°, ...
|
||||||
x1 := CX + rx * cos(startAngle);
|
SinCos(startAngle, sinAngle, cosAngle);
|
||||||
y1 := CY + ry * sin(startAngle);
|
x1 := CX + rx * cosAngle;
|
||||||
x2 := CX + rx * cos(endAngle);
|
y1 := CY + ry * sinAngle;
|
||||||
y2 := CY + ry * sin(endAngle);
|
SinCos(endAngle, sinAngle, cosAngle);
|
||||||
|
x2 := CX + rx * cosAngle;
|
||||||
|
y2 := CY + ry * sinAngle;
|
||||||
if isRotated then begin
|
if isRotated then begin
|
||||||
p := Rotate3DPointInXY(Make3DPoint(x1, y1), Make3DPoint(CX, CY), -phi);
|
p := Rotate3DPointInXY(Make3DPoint(x1, y1), Make3DPoint(CX, CY), -phi);
|
||||||
// See comment at Rotate3DPointInXY regarding the negative sign of phi
|
// See comment at Rotate3DPointInXY regarding the negative sign of phi
|
||||||
|
@ -1559,7 +1559,7 @@ var
|
|||||||
g: TFreeTypeGlyph;
|
g: TFreeTypeGlyph;
|
||||||
prevCharcode, glyphIndex: integer;
|
prevCharcode, glyphIndex: integer;
|
||||||
txmatrix: TT_Matrix;
|
txmatrix: TT_Matrix;
|
||||||
angle: single;
|
angle, sin_angle, cos_angle: single;
|
||||||
outline: ^TT_Outline;
|
outline: ^TT_Outline;
|
||||||
vector: TT_Vector;
|
vector: TT_Vector;
|
||||||
corrX, corrY: single;
|
corrX, corrY: single;
|
||||||
@ -1571,10 +1571,11 @@ begin
|
|||||||
if Orientation<>0 then
|
if Orientation<>0 then
|
||||||
begin
|
begin
|
||||||
angle := Orientation * PI / 1800;
|
angle := Orientation * PI / 1800;
|
||||||
txmatrix.xx := Round( cos( angle ) * $10000 );
|
SinCos(angle, sin_angle, cos_angle);
|
||||||
txmatrix.xy := -Round( sin( angle ) * $10000 );
|
txmatrix.xx := Round( cos_angle * $10000 );
|
||||||
txmatrix.yx := Round( sin( angle ) * $10000 );
|
txmatrix.xy := -Round( sin_angle * $10000 );
|
||||||
txmatrix.yy := Round( cos( angle ) * $10000 );
|
txmatrix.yx := Round( sin_angle * $10000 );
|
||||||
|
txmatrix.yy := Round( cos_angle * $10000 );
|
||||||
end;
|
end;
|
||||||
|
|
||||||
while idx <> 0 do
|
while idx <> 0 do
|
||||||
|
@ -70,7 +70,7 @@ interface
|
|||||||
{$I lr_vers.inc}
|
{$I lr_vers.inc}
|
||||||
|
|
||||||
uses
|
uses
|
||||||
SysUtils, Classes, Graphics, Controls, Forms, Dialogs;
|
SysUtils, Math, Classes, Graphics, Controls, Forms, Dialogs;
|
||||||
|
|
||||||
type
|
type
|
||||||
TBarcodeType = (bcCode_2_5_interleaved,
|
TBarcodeType = (bcCode_2_5_interleaved,
|
||||||
@ -230,8 +230,7 @@ function Rotate2D(p: TPoint; alpha: double): TPoint;
|
|||||||
var
|
var
|
||||||
sinus, cosinus: extended;
|
sinus, cosinus: extended;
|
||||||
begin
|
begin
|
||||||
sinus := sin(alpha);
|
SinCos(alpha, sinus, cosinus);
|
||||||
cosinus := cos(alpha);
|
|
||||||
Result.x := Round(p.x * cosinus + p.y * sinus);
|
Result.x := Round(p.x * cosinus + p.y * sinus);
|
||||||
Result.y := Round(-p.x * sinus + p.y * cosinus);
|
Result.y := Round(-p.x * sinus + p.y * cosinus);
|
||||||
end;
|
end;
|
||||||
|
@ -44,6 +44,11 @@
|
|||||||
</Win32>
|
</Win32>
|
||||||
</Options>
|
</Options>
|
||||||
</Linking>
|
</Linking>
|
||||||
|
<Other>
|
||||||
|
<ConfigFile>
|
||||||
|
<WriteConfigFilePath Value="$(ProjOutDir)/fpclaz.cfg"/>
|
||||||
|
</ConfigFile>
|
||||||
|
</Other>
|
||||||
</CompilerOptions>
|
</CompilerOptions>
|
||||||
</Item2>
|
</Item2>
|
||||||
</BuildModes>
|
</BuildModes>
|
||||||
@ -105,6 +110,11 @@
|
|||||||
</Win32>
|
</Win32>
|
||||||
</Options>
|
</Options>
|
||||||
</Linking>
|
</Linking>
|
||||||
|
<Other>
|
||||||
|
<ConfigFile>
|
||||||
|
<WriteConfigFilePath Value="$(ProjOutDir)/fpclaz.cfg"/>
|
||||||
|
</ConfigFile>
|
||||||
|
</Other>
|
||||||
</CompilerOptions>
|
</CompilerOptions>
|
||||||
<Debugging>
|
<Debugging>
|
||||||
<Exceptions Count="3">
|
<Exceptions Count="3">
|
||||||
|
Loading…
Reference in New Issue
Block a user