नोट
इस पृष्ठ तक पहुंच के लिए प्राधिकरण की आवश्यकता होती है। आप साइन इन करने या निर्देशिकाएँ बदलने का प्रयास कर सकते हैं।
इस पृष्ठ तक पहुंच के लिए प्राधिकरण की आवश्यकता होती है। आप निर्देशिकाएँ बदलने का प्रयास कर सकते हैं।
Represent a norm number. Each element is a floating point number in the range of [-1.0f, 1.0f].
Syntax
class norm;
Members
Public Constructors
| Name | Description |
|---|---|
| norm Constructor | Overloaded. Default constructor. Initialize to 0.0f. |
Public Operators
| Name | Description |
|---|---|
| norm::operator- | |
| norm::operator-- | |
| norm::operator float | Conversion operator. Convert the norm number to a floating point value. |
| norm::operator*= | |
| norm::operator/= | |
| norm::operator++ | |
| norm::operator+= | |
| norm::operator= | |
| norm::operator-= |
Inheritance Hierarchy
norm
Requirements
Header: amp_short_vectors.h
Namespace: Concurrency::graphics
norm
Default constructor. Initialize to 0.0f.
norm(
void) restrict(amp,
cpu);
explicit norm(
float _V) restrict(amp,
cpu);
explicit norm(
unsigned int _V) restrict(amp,
cpu);
explicit norm(
int _V) restrict(amp,
cpu);
explicit norm(
double _V) restrict(amp,
cpu);
norm(
const norm& _Other) restrict(amp,
cpu);
norm(
const unorm& _Other) restrict(amp,
cpu);
Parameters
_V
The value used to initialize.
_Other
The object used to initialize.