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/vec3i.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/vec3d.h"
38 #include "pxr/base/gf/vec3f.h"
39 #include "pxr/base/gf/vec3h.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<GfVec3i>();
48 }
49 
50 std::ostream&
operator <<(std::ostream & out,GfVec3i const & v)51 operator<<(std::ostream &out, GfVec3i const &v)
52 {
53     return out << '('
54         << Gf_OstreamHelperP(v[0]) << ", "
55         << Gf_OstreamHelperP(v[1]) << ", "
56         << Gf_OstreamHelperP(v[2]) << ')';
57 }
58 
59 
60 bool
operator ==(GfVec3d const & other) const61 GfVec3i::operator==(GfVec3d const &other) const
62 {
63     return _data[0] == other[0] &&
64            _data[1] == other[1] &&
65            _data[2] == other[2];
66 }
67 bool
operator ==(GfVec3f const & other) const68 GfVec3i::operator==(GfVec3f const &other) const
69 {
70     return _data[0] == other[0] &&
71            _data[1] == other[1] &&
72            _data[2] == other[2];
73 }
74 bool
operator ==(GfVec3h const & other) const75 GfVec3i::operator==(GfVec3h const &other) const
76 {
77     return _data[0] == other[0] &&
78            _data[1] == other[1] &&
79            _data[2] == other[2];
80 }
81 
82 
83 PXR_NAMESPACE_CLOSE_SCOPE
84