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 152 of file path_component.h.

Constructor & Destructor Documentation

◆ ContourComponent() [1/2]

impeller::ContourComponent::ContourComponent ( )
inline

Definition at line 156 of file path_component.h.

156 {}

◆ ContourComponent() [2/2]

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

Definition at line 158 of file path_component.h.

Member Function Documentation

◆ operator==()

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

Definition at line 161 of file path_component.h.

161  {
162  return destination == other.destination && is_closed == other.is_closed;
163  }

References destination, and is_closed.

Member Data Documentation

◆ destination

Point impeller::ContourComponent::destination

Definition at line 153 of file path_component.h.

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

◆ is_closed

bool impeller::ContourComponent::is_closed = false

Definition at line 154 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:154
impeller::ContourComponent::destination
Point destination
Definition: path_component.h:153