Bump dependencies

This commit is contained in:
Andras Schmelczer 2026-06-06 14:58:32 +01:00
parent 346fc96df8
commit c6438a9e21
20 changed files with 115 additions and 72 deletions

View file

@ -8,7 +8,10 @@ import { numberToGlslFloat } from '../../helper/number-to-glsl-float';
* @category Drawable
*/
class MetaCircleBase extends EmptyDrawable {
constructor(public center: vec2, public radius: number) {
constructor(
public center: vec2,
public radius: number
) {
super();
}
}