import { OrientationSetting } from '@3cr/types-ts/types/OrientationSetting'; import { faker } from '@faker-js/faker'; import { Orientation } from '@3cr/types-ts'; import { Vector3Faker } from '@test/fakers/vector3.faker'; export class OrientationFaker { static random(): OrientationSetting { return { Version: faker.system.semver(), Orientation: faker.helpers.enumValue(Orientation), ReferencePoint: Vector3Faker.random(), Position: Vector3Faker.random(), Rotation: Vector3Faker.random(), Scale: Vector3Faker.random(), }; } }