Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
CityDoctor
CityGML Viewer
Commits
53ae9548
Commit
53ae9548
authored
Feb 27, 2026
by
Matthias Betz
Browse files
fix bracket
parent
ea536269
Pipeline
#12352
passed with stages
in 9 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
public/run_sax.js
View file @
53ae9548
...
@@ -351,6 +351,7 @@ function clearViewing(gl) {
...
@@ -351,6 +351,7 @@ function clearViewing(gl) {
gl
.
deleteBuffer
(
viewInfo
.
indexVbo
);
gl
.
deleteBuffer
(
viewInfo
.
indexVbo
);
gl
.
deleteVertexArray
(
viewInfo
.
vao
);
gl
.
deleteVertexArray
(
viewInfo
.
vao
);
}
}
}
function
translateByClosestPoint
(
vertexData
,
closestIndex
)
{
function
translateByClosestPoint
(
vertexData
,
closestIndex
)
{
const
i
=
closestIndex
*
3
;
const
i
=
closestIndex
*
3
;
...
@@ -603,7 +604,7 @@ function createProgram(gl, vertexShaderSource, fragmentShaderSource) {
...
@@ -603,7 +604,7 @@ function createProgram(gl, vertexShaderSource, fragmentShaderSource) {
gl
.
deleteShader
(
fshader
);
gl
.
deleteShader
(
fshader
);
gl
.
linkProgram
(
program
);
gl
.
linkProgram
(
program
);
return
program
;
return
program
;
}
;
}
var
input
=
document
.
getElementById
(
'
input
'
);
var
input
=
document
.
getElementById
(
'
input
'
);
input
.
addEventListener
(
"
change
"
,
function
()
{
input
.
addEventListener
(
"
change
"
,
function
()
{
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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