float_2 Class
The new home for Visual Studio documentation is Visual Studio 2017 Documentation on docs.microsoft.com.
Represents a short vector of two floats.
Syntax
class float_2;
Members
Public Typedefs
Name | Description |
---|---|
value_type |
Public Constructors
Name | Description |
---|---|
float_2::float_2 Constructor | Overloaded. Default constructor, initializes all elements with 0. |
Public Methods
Name | Description |
---|---|
float_2::get_x Method | |
float_2::get_xy Method | |
float_2::get_y Method | |
float_2::get_yx Method | |
float_2::ref_g Method | |
float_2::ref_r Method | |
float_2::ref_x Method | |
float_2::ref_y Method | |
float_2::set_x Method | |
float_2::set_xy Method | |
float_2::set_y Method | |
float_2::set_yx Method |
Public Operators
Name | Description |
---|---|
float_2::operator- Operator | |
float_2::operator-- Operator | |
float_2::operator*= Operator | |
float_2::operator/= Operator | |
float_2::operator++ Operator | |
float_2::operator+= Operator | |
float_2::operator= Operator | |
float_2::operator-= Operator |
Public Constants
Name | Description |
---|---|
float_2::size Constant |
Public Data Members
Name | Description |
---|---|
float_2::g Data Member | |
float_2::gr Data Member | |
float_2::r Data Member | |
float_2::rg Data Member | |
float_2::x Data Member | |
float_2::xy Data Member | |
float_2::y Data Member | |
float_2::yx Data Member |
Inheritance Hierarchy
float_2
Requirements
Header: amp_short_vectors.h
Namespace: Concurrency::graphics
float_2::float_2 Constructor
Default constructor, initializes all elements with 0.
float_2() restrict(amp,
cpu);
float_2(
float _V0,
float _V1) restrict(amp,
cpu);
float_2(
float _V) restrict(amp,
cpu);
float_2(
const float_2& _Other) restrict(amp,
cpu);
explicit inline float_2(
const uint_2& _Other) restrict(amp,
cpu);
explicit inline float_2(
const int_2& _Other) restrict(amp,
cpu);
explicit inline float_2(
const unorm_2& _Other) restrict(amp,
cpu);
explicit inline float_2(
const norm_2& _Other) restrict(amp,
cpu);
explicit inline float_2(
const double_2& _Other) restrict(amp,
cpu);
Parameters
_V0
The value to initialize element 0.
_V1
The value to initialize element 1.
_V
The value for initialization.
_Other
The object used to initialize.
float_2::size Constant
static const int size = 2;