Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 | /**
* Animation Constants Module
*
* Centralized constants for Korean martial arts animation system.
* Provides single source of truth for anatomical limits, timing values,
* and other animation-related constants.
*
* @module systems/animation/constants
* @category Animation Constants
* @korean 애니메이션상수모듈
*/
export {
ANATOMICAL_LIMITS,
type AnatomicalLimits,
getAnatomicalLimit,
degreesToRadians,
radiansToDegrees,
} from "./AnatomicalLimits";
|