Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
Luis Penaranda
panoramic
Commits
44ec9b4f
Commit
44ec9b4f
authored
Aug 19, 2013
by
Luis Penaranda
Browse files
very minor
parent
23bb9e6f
Changes
2
Hide whitespace changes
Inline
Side-by-side
openglcanvas.cpp
View file @
44ec9b4f
...
...
@@ -505,7 +505,6 @@ void OpenGLCanvas::vertex_transformation(float *positions, int m, int n, float c
positions
[
3
*
(
j
+
i
*
n
)
+
2
]
=
z
;
}
// perspective
if
(
visualization
==
"Zorin-Barr"
){
// perspective
u
=
x
/
(
-
z
);
...
...
shaders/vertex_shader.vert
View file @
44ec9b4f
...
...
@@ -71,8 +71,8 @@ void main(void){
else
if
(
vis_mode
==
3
.
0
)
// Equi-Rectangular
gl_Position
=
vec4
(
lambda
,
phi
,
z
,
1
.
0
);
else
if
(
vis_mode
==
4
.
0
)
{
// Stereographic
u
=
2
.
f
*
x
/
(
-
z
+
1
);
v
=
2
.
f
*
y
/
(
-
z
+
1
);
u
=
2
.
0
*
x
/
(
-
z
+
1
.
0
);
v
=
2
.
0
*
y
/
(
-
z
+
1
.
0
);
gl_Position
=
vec4
(
u
/
extent
,
v
/
extent
,
z
,
1
.
0
);
}
else
if
(
vis_mode
==
5
.
0
)
{
// Mercator
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment