HatchitMath
ht_scalar.h
1 
15 #pragma once
16 
17 #include <ht_platform.h>
18 #include <ht_intrin.h>
19 #include <ht_mmbasevector.h>
20 
21 namespace Hatchit {
22 
23  namespace Math {
24 
25  class HT_API Scalar : public MMBaseVector
26  {
27  public:
28  Scalar(void);
29  Scalar(float _val);
30  Scalar(__m128 _val);
31 
32  const float operator[] (int index);
33 
34  operator float(void) const;
35  };
36  }
37 }
Hatchit Engine Copyright(c) 2015-2016 Third-Degree.
Definition: ht_intrin.h:33
Definition: ht_scalar.h:25
Definition: ht_mmbasevector.h:24