ToyGine2 26.2.0
Game Engine for retro consoles
Loading...
Searching...
No Matches
toy::geometry::CircleComponent Concept Reference

Concept satisfied when T is a component type allowed as toy::geometry::Circle template parameter. More...

Concept definition

template<typename T>
concept CircleComponent = math::floating_point<T> || math::fixed_point<T>
Concept satisfied when T is a component type allowed as toy::geometry::Circle template parameter.
Definition circle.hpp:49
Concept satisfied when T is an instantiation of toy::math::fixed.
Definition fixed.hpp:419

Detailed Description

Concept satisfied when T is a component type allowed as toy::geometry::Circle template parameter.

Use to constrain the component type of toy::geometry::Circle to floating-point or fixed-point types only.

Requirements

A type T satisfies CircleComponent if and only if at least one of the following holds:

See also
toy::geometry::Circle