UNPKG
vue-cesium-jyt
Version:
latest (3.0.10-fix2)
3.0.10
3.0.10-fix2
3.0.10-fix1
Vue 3.x components for CesiumJS.
github.com/brantroy/vue-cesium
brantroy/vue-cesium
vue-cesium-jyt
/
lib
/
components
/
overlays
/
wind
/
glsl
/
fullscreen.vert.d.ts
3 lines
(2 loc)
•
218 B
TypeScript
View Raw
1
2
3
declare const text
=
"
\n
attribute vec3 position;
\n
attribute vec2 st;
\n
\n
varying vec2 textureCoordinate;
\n
\n
void main() {
\n
textureCoordinate = st;
\n
gl_Position = vec4(position, 1.0);
\n
}
\n
"
; export
default
text;