Flutter Engine
The Flutter Engine
Loading...
Searching...
No Matches
Public Member Functions | Private Member Functions | List of all members
impeller::CircleGeometry Class Referencefinal

#include <circle_geometry.h>

Inheritance diagram for impeller::CircleGeometry:
impeller::Geometry

Public Member Functions

 CircleGeometry (const Point &center, Scalar radius)
 
 CircleGeometry (const Point &center, Scalar radius, Scalar stroke_width)
 
 ~CircleGeometry ()=default
 
bool CoversArea (const Matrix &transform, const Rect &rect) const override
 Determines if this geometry, transformed by the given transform, will completely cover all surface area of the given rect.
 
bool IsAxisAlignedRect () const override
 
- Public Member Functions inherited from impeller::Geometry
virtual GeometryResult::Mode GetResultMode () const
 
virtual bool CanApplyMaskFilter () const
 

Private Member Functions

GeometryResult GetPositionBuffer (const ContentContext &renderer, const Entity &entity, RenderPass &pass) const override
 
std::optional< RectGetCoverage (const Matrix &transform) const override
 

Additional Inherited Members

- Static Public Member Functions inherited from impeller::Geometry
static std::shared_ptr< GeometryMakeFillPath (const Path &path, std::optional< Rect > inner_rect=std::nullopt)
 
static std::shared_ptr< GeometryMakeStrokePath (const Path &path, Scalar stroke_width=0.0, Scalar miter_limit=4.0, Cap stroke_cap=Cap::kButt, Join stroke_join=Join::kMiter)
 
static std::shared_ptr< GeometryMakeCover ()
 
static std::shared_ptr< GeometryMakeRect (const Rect &rect)
 
static std::shared_ptr< GeometryMakeOval (const Rect &rect)
 
static std::shared_ptr< GeometryMakeLine (const Point &p0, const Point &p1, Scalar width, Cap cap)
 
static std::shared_ptr< GeometryMakeCircle (const Point &center, Scalar radius)
 
static std::shared_ptr< GeometryMakeStrokedCircle (const Point &center, Scalar radius, Scalar stroke_width)
 
static std::shared_ptr< GeometryMakeRoundRect (const Rect &rect, const Size &radii)
 
static std::shared_ptr< GeometryMakePointField (std::vector< Point > points, Scalar radius, bool round)
 
- Static Protected Member Functions inherited from impeller::Geometry
static GeometryResult ComputePositionGeometry (const ContentContext &renderer, const Tessellator::VertexGenerator &generator, const Entity &entity, RenderPass &pass)
 

Detailed Description

Definition at line 14 of file circle_geometry.h.

Constructor & Destructor Documentation

◆ CircleGeometry() [1/2]

impeller::CircleGeometry::CircleGeometry ( const Point center,
Scalar  radius 
)
explicit

Definition at line 13 of file circle_geometry.cc.

14 : center_(center), radius_(radius), stroke_width_(-1.0f) {
15 FML_DCHECK(radius >= 0);
16}
static SkScalar center(float pos0, float pos1)
#define FML_DCHECK(condition)
Definition logging.h:103

◆ CircleGeometry() [2/2]

impeller::CircleGeometry::CircleGeometry ( const Point center,
Scalar  radius,
Scalar  stroke_width 
)
explicit

Definition at line 18 of file circle_geometry.cc.

21 : center_(center),
22 radius_(radius),
23 stroke_width_(std::max(stroke_width, 0.0f)) {
24 FML_DCHECK(radius >= 0);
26}
const Scalar stroke_width

◆ ~CircleGeometry()

impeller::CircleGeometry::~CircleGeometry ( )
default

Member Function Documentation

◆ CoversArea()

bool impeller::CircleGeometry::CoversArea ( const Matrix transform,
const Rect rect 
) const
overridevirtual

Determines if this geometry, transformed by the given transform, will completely cover all surface area of the given rect.

This is a conservative estimate useful for certain optimizations.

Returns
true if the transformed geometry is guaranteed to cover the given rect. May return false in many undetected cases where the transformed geometry does in fact cover the rect.

Reimplemented from impeller::Geometry.

Definition at line 61 of file circle_geometry.cc.

62 {
63 return false;
64}

◆ GetCoverage()

std::optional< Rect > impeller::CircleGeometry::GetCoverage ( const Matrix transform) const
overrideprivatevirtual

Implements impeller::Geometry.

Definition at line 47 of file circle_geometry.cc.

47 {
48 Point corners[4]{
49 {center_.x, center_.y - radius_},
50 {center_.x + radius_, center_.y},
51 {center_.x, center_.y + radius_},
52 {center_.x - radius_, center_.y},
53 };
54
55 for (int i = 0; i < 4; i++) {
56 corners[i] = transform * corners[i];
57 }
58 return Rect::MakePointBounds(std::begin(corners), std::end(corners));
59}
TPoint< Scalar > Point
Definition point.h:316
static SkColor4f transform(SkColor4f c, SkColorSpace *src, SkColorSpace *dst)
Definition p3.cpp:47
static constexpr std::optional< TRect > MakePointBounds(const U &value)
Definition rect.h:151

◆ GetPositionBuffer()

GeometryResult impeller::CircleGeometry::GetPositionBuffer ( const ContentContext renderer,
const Entity entity,
RenderPass pass 
) const
overrideprivatevirtual

Implements impeller::Geometry.

Definition at line 28 of file circle_geometry.cc.

30 {
31 auto& transform = entity.GetTransform();
32
33 Scalar half_width = stroke_width_ < 0 ? 0.0
35 transform, stroke_width_);
36
37 std::shared_ptr<Tessellator> tessellator = renderer.GetTessellator();
38
39 // We call the StrokedCircle method which will simplify to a
40 // FilledCircleGenerator if the inner_radius is <= 0.
41 auto generator =
42 tessellator->StrokedCircle(transform, center_, radius_, half_width);
43
44 return ComputePositionGeometry(renderer, generator, entity, pass);
45}
static GeometryResult ComputePositionGeometry(const ContentContext &renderer, const Tessellator::VertexGenerator &generator, const Entity &entity, RenderPass &pass)
Definition geometry.cc:24
static Scalar ComputePixelHalfWidth(const Matrix &transform, Scalar width)
float Scalar
Definition scalar.h:18

◆ IsAxisAlignedRect()

bool impeller::CircleGeometry::IsAxisAlignedRect ( ) const
overridevirtual

Reimplemented from impeller::Geometry.

Definition at line 66 of file circle_geometry.cc.

66 {
67 return false;
68}

The documentation for this class was generated from the following files: