1 //
2 // Copyright 2016 Pixar
3 //
4 // Licensed under the Apache License, Version 2.0 (the "Apache License")
5 // with the following modification; you may not use this file except in
6 // compliance with the Apache License and the following modification to it:
7 // Section 6. Trademarks. is deleted and replaced with:
8 //
9 // 6. Trademarks. This License does not grant permission to use the trade
10 //    names, trademarks, service marks, or product names of the Licensor
11 //    and its affiliates, except as required to comply with Section 4(c) of
12 //    the License and to reproduce the content of the NOTICE file.
13 //
14 // You may obtain a copy of the Apache License at
15 //
16 //     http://www.apache.org/licenses/LICENSE-2.0
17 //
18 // Unless required by applicable law or agreed to in writing, software
19 // distributed under the Apache License with the above modification is
20 // distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
21 // KIND, either express or implied. See the Apache License for the specific
22 // language governing permissions and limitations under the Apache License.
23 //
24 ////////////////////////////////////////////////////////////////////////
25 // This file is generated by a script.  Do not edit directly.  Edit the
26 // vec.template.cpp file to make changes.
27 
28 #include "pxr/base/gf/vec4f.h"
29 
30 #include "pxr/pxr.h"
31 #include "pxr/base/gf/math.h"
32 #include "pxr/base/gf/ostreamHelpers.h"
33 #include "pxr/base/tf/type.h"
34 
35 // Include headers for other vec types to support wrapping conversions and
36 // operators.
37 #include "pxr/base/gf/vec4d.h"
38 #include "pxr/base/gf/vec4h.h"
39 #include "pxr/base/gf/vec4i.h"
40 
41 #include <vector>
42 #include <ostream>
43 
44 PXR_NAMESPACE_OPEN_SCOPE
45 
TF_REGISTRY_FUNCTION(TfType)46 TF_REGISTRY_FUNCTION(TfType) {
47     TfType::Define<GfVec4f>();
48 }
49 
50 std::ostream&
operator <<(std::ostream & out,GfVec4f const & v)51 operator<<(std::ostream &out, GfVec4f const &v)
52 {
53     return out << '('
54         << Gf_OstreamHelperP(v[0]) << ", "
55         << Gf_OstreamHelperP(v[1]) << ", "
56         << Gf_OstreamHelperP(v[2]) << ", "
57         << Gf_OstreamHelperP(v[3]) << ')';
58 }
59 
60 
61 bool
operator ==(GfVec4d const & other) const62 GfVec4f::operator==(GfVec4d const &other) const
63 {
64     return _data[0] == other[0] &&
65            _data[1] == other[1] &&
66            _data[2] == other[2] &&
67            _data[3] == other[3];
68 }
69 bool
operator ==(GfVec4h const & other) const70 GfVec4f::operator==(GfVec4h const &other) const
71 {
72     return _data[0] == other[0] &&
73            _data[1] == other[1] &&
74            _data[2] == other[2] &&
75            _data[3] == other[3];
76 }
77 bool
operator ==(GfVec4i const & other) const78 GfVec4f::operator==(GfVec4i const &other) const
79 {
80     return _data[0] == other[0] &&
81            _data[1] == other[1] &&
82            _data[2] == other[2] &&
83            _data[3] == other[3];
84 }
85 
86 
87 PXR_NAMESPACE_CLOSE_SCOPE
88