- Go backend (server/)
- Frontend (web/, server/static/)
- Database and deployment files
- Scripts and docs
Co-Authored-By: 狸花猫/Claude-Qwen3.6-Plus 🐾
13 lines
200 B
JavaScript
13 lines
200 B
JavaScript
module.exports = create
|
|
|
|
/**
|
|
* Creates a new, empty vec2
|
|
*
|
|
* @returns {vec2} a new 2D vector
|
|
*/
|
|
function create() {
|
|
var out = new Float32Array(2)
|
|
out[0] = 0
|
|
out[1] = 0
|
|
return out
|
|
} |