frustum.cpp
Go to the documentation of this file.
1 /*
2  * Copyright 2014 Google Inc. All Rights Reserved.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  * http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16 #include "tango-gl/frustum.h"
17 
18 namespace tango_gl {
19 
20 static const float float_vertices[] = {
21  0.0f, 0.0f, 0.0f, -1.0f, 1.0f, -1.0f, 0.0f, 0.0f, 0.0f, 1.0f,
22  1.0f, -1.0f, 0.0f, 0.0f, 0.0f, -1.0f, -1.0f, -1.0f, 0.0f, 0.0f,
23  0.0f, 1.0f, -1.0f, -1.0f, -1.0f, 1.0f, -1.0f, 1.0f, 1.0f, -1.0f,
24  1.0f, 1.0f, -1.0f, 1.0f, -1.0f, -1.0f, 1.0f, -1.0f, -1.0f, -1.0f,
25  -1.0f, -1.0f, -1.0f, -1.0f, -1.0f, -1.0f, 1.0f, -1.0f};
26 
27 Frustum::Frustum() : Line(3.0f, GL_LINES) {
28  SetShader();
29  size_t size = sizeof(float_vertices) / sizeof(float);
30  for (size_t i = 0; i < size; i += 3) {
31  vec_vertices_.push_back(glm::vec3(float_vertices[i], float_vertices[i + 1],
32  float_vertices[i + 2]));
33  }
34 }
35 } // namespace tango_gl
static const float float_vertices[]
Definition: axis.cpp:22
f
std::vector< glm::vec3 > vec_vertices_
Definition: line.h:34


rtabmap
Author(s): Mathieu Labbe
autogenerated on Wed Jun 5 2019 22:41:31