Home
last modified time | relevance | path

Searched refs:aCenterPoint (Results 1 – 19 of 19) sorted by relevance

/dports/cad/kicad-devel/kicad-a17a58203b33e08b966075833b177dad5740c236/3d-viewer/3d_rendering/raytracing/shapes3D/
H A Dplane_3d.cpp46 XY_PLANE::XY_PLANE( SFVEC3F aCenterPoint, float aXSize, float aYSize ) in XY_PLANE() argument
49 m_centerPoint = aCenterPoint; in XY_PLANE()
54 m_bbox.Set( SFVEC3F( aCenterPoint.x - aXSize / 2.0f, aCenterPoint.y - aYSize / 2.0f, in XY_PLANE()
55 aCenterPoint.z ), in XY_PLANE()
56 SFVEC3F( aCenterPoint.x + aXSize / 2.0f, aCenterPoint.y + aYSize / 2.0f, in XY_PLANE()
57 aCenterPoint.z ) ); in XY_PLANE()
58 m_centroid = aCenterPoint; in XY_PLANE()
H A Dcylinder_3d.cpp34 CYLINDER::CYLINDER( SFVEC2F aCenterPoint, float aZmin, float aZmax, float aRadius ) in CYLINDER() argument
37 m_center = aCenterPoint; in CYLINDER()
41 m_bbox.Set( SFVEC3F( aCenterPoint.x - aRadius, aCenterPoint.y - aRadius, aZmin ), in CYLINDER()
42 SFVEC3F( aCenterPoint.x + aRadius, aCenterPoint.y + aRadius, aZmax ) ); in CYLINDER()
H A Dcylinder_3d.h46 CYLINDER( SFVEC2F aCenterPoint, float aZmin, float aZmax, float aRadius );
H A Dplane_3d.h47 XY_PLANE( SFVEC3F aCenterPoint, float aXSize, float aYSize );
/dports/editors/libreoffice6/libreoffice-6.4.7.2/filter/source/graphicfilter/icgm/
H A Dclass4.cxx360 FloatPoint aStartingPoint, aIntermediatePoint, aEndingPoint, aCenterPoint; in ImplDoClass4() local
377 aCenterPoint.X = ( fD * fE - fB * fF ) / fG; in ImplDoClass4()
378 aCenterPoint.Y = ( fA * fF - fC * fE ) / fG; in ImplDoClass4()
381 double fEndAngle = ImplGetOrientation( aCenterPoint, aEndingPoint ); in ImplDoClass4()
405 …le fRadius = sqrt( pow( ( aStartingPoint.X - aCenterPoint.X ), 2 ) + pow( ( aStartingPoint.Y - aCe… in ImplDoClass4()
409 … tools::Rectangle aBoundingBox(aCenterPoint.X - fRadius, aCenterPoint.Y - fRadius); in ImplDoClass4()
433 FloatPoint aStartingPoint, aIntermediatePoint, aEndingPoint, aCenterPoint; in ImplDoClass4() local
450 aCenterPoint.X = ( fD * fE - fB * fF ) / fG; in ImplDoClass4()
451 aCenterPoint.Y = ( fA * fF - fC * fE ) / fG; in ImplDoClass4()
454 double fEndAngle = ImplGetOrientation( aCenterPoint, aEndingPoint ); in ImplDoClass4()
[all …]
/dports/editors/libreoffice/libreoffice-7.2.6.2/filter/source/graphicfilter/icgm/
H A Dclass4.cxx382 FloatPoint aCenterPoint; in ImplDoClass4() local
383 aCenterPoint.X = ( fD * fE - fB * fF ) / fG; in ImplDoClass4()
384 aCenterPoint.Y = ( fA * fF - fC * fE ) / fG; in ImplDoClass4()
387 double fEndAngle = ImplGetOrientation( aCenterPoint, aEndingPoint ); in ImplDoClass4()
411 …le fRadius = sqrt( pow( ( aStartingPoint.X - aCenterPoint.X ), 2 ) + pow( ( aStartingPoint.Y - aCe… in ImplDoClass4()
415 … tools::Rectangle aBoundingBox(aCenterPoint.X - fRadius, aCenterPoint.Y - fRadius); in ImplDoClass4()
456 FloatPoint aCenterPoint; in ImplDoClass4() local
457 aCenterPoint.X = ( fD * fE - fB * fF ) / fG; in ImplDoClass4()
458 aCenterPoint.Y = ( fA * fF - fC * fE ) / fG; in ImplDoClass4()
461 double fEndAngle = ImplGetOrientation( aCenterPoint, aEndingPoint ); in ImplDoClass4()
[all …]
/dports/cad/kicad-devel/kicad-a17a58203b33e08b966075833b177dad5740c236/include/gal/opengl/
H A Dopengl_gal.h127 void DrawCircle( const VECTOR2D& aCenterPoint, double aRadius ) override;
130 void DrawArc( const VECTOR2D& aCenterPoint, double aRadius,
134 void DrawArcSegment( const VECTOR2D& aCenterPoint, double aRadius,
395 void drawSemiCircle( const VECTOR2D& aCenterPoint, double aRadius, double aAngle );
405 void drawFilledSemiCircle( const VECTOR2D& aCenterPoint, double aRadius, double aAngle );
415 void drawStrokedSemiCircle( const VECTOR2D& aCenterPoint, double aRadius, double aAngle );
/dports/cad/kicad-devel/kicad-a17a58203b33e08b966075833b177dad5740c236/common/gal/opengl/
H A Dopengl_gal.cpp761 m_currentManager->Vertex( aCenterPoint.x, aCenterPoint.y, m_layerDepth ); in DrawCircle()
764 m_currentManager->Vertex( aCenterPoint.x, aCenterPoint.y, m_layerDepth ); in DrawCircle()
767 m_currentManager->Vertex( aCenterPoint.x, aCenterPoint.y, m_layerDepth ); in DrawCircle()
786 m_currentManager->Vertex( aCenterPoint.x, // v0 in DrawCircle()
790 m_currentManager->Vertex( aCenterPoint.x, // v1 in DrawCircle()
794 m_currentManager->Vertex( aCenterPoint.x, aCenterPoint.y, // v2 in DrawCircle()
812 m_currentManager->Translate( aCenterPoint.x, aCenterPoint.y, 0.0 ); in DrawArc()
877 DrawCircle( aCenterPoint, aWidth / 2.0 ); in DrawArcSegment()
903 m_currentManager->Translate( aCenterPoint.x, aCenterPoint.y, 0.0 ); in DrawArcSegment()
1876 m_currentManager->Translate( aCenterPoint.x, aCenterPoint.y, 0.0f ); in drawFilledSemiCircle()
[all …]
/dports/cad/kicad-devel/kicad-a17a58203b33e08b966075833b177dad5740c236/eeschema/
H A Dsch_base_frame.cpp243 void SCH_BASE_FRAME::RedrawScreen( const wxPoint& aCenterPoint, bool aWarpPointer ) in RedrawScreen() argument
245 GetCanvas()->GetView()->SetCenter( aCenterPoint ); in RedrawScreen()
254 void SCH_BASE_FRAME::CenterScreen( const wxPoint& aCenterPoint, bool aWarpPointer ) in CenterScreen() argument
256 GetCanvas()->GetView()->SetCenter( aCenterPoint ); in CenterScreen()
259 GetCanvas()->GetViewControls()->WarpCursor( aCenterPoint, true ); in CenterScreen()
H A Dsch_base_frame.h195 virtual void RedrawScreen( const wxPoint& aCenterPoint, bool aWarpPointer );
197 virtual void CenterScreen( const wxPoint& aCenterPoint, bool aWarpPointer );
/dports/cad/kicad-devel/kicad-a17a58203b33e08b966075833b177dad5740c236/include/view/
H A Dview_overlay.h82 void Circle( const VECTOR2D& aCenterPoint, double aRadius );
83 void Arc( const VECTOR2D& aCenterPoint, double aRadius, double aStartAngle, double aEndAngle );
/dports/cad/kicad-devel/kicad-a17a58203b33e08b966075833b177dad5740c236/common/view/
H A Dview_overlay.cpp359 void VIEW_OVERLAY::Circle( const VECTOR2D& aCenterPoint, double aRadius ) in Circle() argument
361 m_commands.push_back( new COMMAND_CIRCLE( aCenterPoint, aRadius ) ); in Circle()
365 void VIEW_OVERLAY::Arc( const VECTOR2D& aCenterPoint, double aRadius, double aStartAngle, in Arc() argument
368 m_commands.push_back( new COMMAND_ARC( aCenterPoint, aRadius, aStartAngle, aEndAngle ) ); in Arc()
/dports/cad/kicad-devel/kicad-a17a58203b33e08b966075833b177dad5740c236/include/gal/cairo/
H A Dcairo_gal.h78 void DrawCircle( const VECTOR2D& aCenterPoint, double aRadius ) override;
81 void DrawArc( const VECTOR2D& aCenterPoint, double aRadius,
86 void DrawArcSegment( const VECTOR2D& aCenterPoint, double aRadius,
/dports/cad/kicad-devel/kicad-a17a58203b33e08b966075833b177dad5740c236/include/gal/
H A Dgraphics_abstraction_layer.h127 virtual void DrawCircle( const VECTOR2D& aCenterPoint, double aRadius ) {}; in DrawCircle() argument
137 virtual void DrawArc( const VECTOR2D& aCenterPoint, double aRadius, double aStartAngle, in DrawArc() argument
158 virtual void DrawArcSegment( const VECTOR2D& aCenterPoint, double aRadius, double aStartAngle, in DrawArcSegment() argument
/dports/editors/libreoffice/libreoffice-7.2.6.2/canvas/source/directx/
H A Ddx_canvashelper_texturefill.cxx391 Gdiplus::PointF aCenterPoint(0, 0); in fillPolygonalGradient() local
392 aMatrix.TransformPoints( &aCenterPoint ); in fillPolygonalGradient()
393 pGradientBrush->SetCenterPoint( aCenterPoint ); in fillPolygonalGradient()
/dports/editors/libreoffice6/libreoffice-6.4.7.2/canvas/source/directx/
H A Ddx_canvashelper_texturefill.cxx389 Gdiplus::PointF aCenterPoint(0, 0); in fillPolygonalGradient() local
390 aMatrix.TransformPoints( &aCenterPoint ); in fillPolygonalGradient()
391 pGradientBrush->SetCenterPoint( aCenterPoint ); in fillPolygonalGradient()
/dports/cad/kicad-devel/kicad-a17a58203b33e08b966075833b177dad5740c236/common/gal/cairo/
H A Dcairo_gal.cpp302 void CAIRO_GAL_BASE::DrawCircle( const VECTOR2D& aCenterPoint, double aRadius ) in DrawCircle() argument
306 VECTOR2D c = roundp( xform( aCenterPoint ) ); in DrawCircle()
318 void CAIRO_GAL_BASE::DrawArc( const VECTOR2D& aCenterPoint, double aRadius, double aStartAngle, in DrawArc() argument
335 auto mid = roundp( xform( aCenterPoint ) ); in DrawArc()
354 void CAIRO_GAL_BASE::DrawArcSegment( const VECTOR2D& aCenterPoint, double aRadius, in DrawArcSegment() argument
364 DrawArc( aCenterPoint, aRadius, aStartAngle, aEndAngle ); in DrawArcSegment()
386 VECTOR2D mid = roundp( xform( aCenterPoint ) ); in DrawArcSegment()
/dports/editors/libreoffice6/libreoffice-6.4.7.2/drawinglayer/source/tools/
H A Demfphelperdata.cxx797 basegfx::B2DPoint aCenterPoint = Map(brush->firstPointX, brush->firstPointY); in EMFPPlusFillPolygon() local
798 aCenterPoint = aPolygonTransformation * aCenterPoint; in EMFPPlusFillPolygon()
806 aCenterPoint, in EMFPPlusFillPolygon()
/dports/editors/libreoffice/libreoffice-7.2.6.2/drawinglayer/source/tools/
H A Demfphelperdata.cxx935 basegfx::B2DPoint aCenterPoint = Map(brush->firstPointX, brush->firstPointY); in EMFPPlusFillPolygon() local
936 aCenterPoint = aPolygonTransformation * aCenterPoint; in EMFPPlusFillPolygon()
944 aCenterPoint, in EMFPPlusFillPolygon()