Favivon - Correção

This commit is contained in:
2026-05-30 19:59:39 -03:00
parent 76ddaa815d
commit d7dfd221f0
32859 changed files with 5459654 additions and 404 deletions
+16
View File
@@ -0,0 +1,16 @@
import { ReactThreeFiber } from '@react-three/fiber';
import { Sky as SkyImpl } from 'three-stdlib';
import { Vector3 } from 'three';
import { ForwardRefComponent } from '../helpers/ts-utils';
export type SkyProps = {
distance?: number;
sunPosition?: ReactThreeFiber.Vector3;
inclination?: number;
azimuth?: number;
mieCoefficient?: number;
mieDirectionalG?: number;
rayleigh?: number;
turbidity?: number;
};
export declare function calcPosFromAngles(inclination: number, azimuth: number, vector?: Vector3): Vector3;
export declare const Sky: ForwardRefComponent<SkyProps, SkyImpl>;