Flutter Impeller
impeller::ContourComponent Struct Reference

#include <path_component.h>

Public Member Functions

 ContourComponent ()
 
 ContourComponent (Point p, bool is_closed=false)
 
bool operator== (const ContourComponent &other) const
 

Public Attributes

Point destination
 
bool is_closed = false
 

Detailed Description

Definition at line 146 of file path_component.h.

Constructor & Destructor Documentation

◆ ContourComponent() [1/2]

impeller::ContourComponent::ContourComponent ( )
inline

Definition at line 150 of file path_component.h.

150 {}

◆ ContourComponent() [2/2]

impeller::ContourComponent::ContourComponent ( Point  p,
bool  is_closed = false 
)
inlineexplicit

Definition at line 152 of file path_component.h.

Member Function Documentation

◆ operator==()

bool impeller::ContourComponent::operator== ( const ContourComponent other) const
inline

Definition at line 155 of file path_component.h.

155  {
156  return destination == other.destination && is_closed == other.is_closed;
157  }

References destination, and is_closed.

Member Data Documentation

◆ destination

Point impeller::ContourComponent::destination

Definition at line 147 of file path_component.h.

Referenced by operator==(), and impeller::testing::TEST().

◆ is_closed

bool impeller::ContourComponent::is_closed = false

Definition at line 148 of file path_component.h.

Referenced by operator==(), and impeller::testing::TEST().


The documentation for this struct was generated from the following file:
impeller::ContourComponent::is_closed
bool is_closed
Definition: path_component.h:148
impeller::ContourComponent::destination
Point destination
Definition: path_component.h:147