Skip to content

@ue-too/board / index / halfTranslationHeightOf

函式: halfTranslationHeightOf()

halfTranslationHeightOf(boundaries): number | undefined

定義於: packages/board/src/camera/utils/position.ts:400

Calculates half the height (y-axis half-span) of the boundaries.

參數

boundaries

The boundaries to measure

Boundaries | undefined

回傳

number | undefined

Half-height in world units, or undefined if y boundaries are not fully defined

備註

Useful for calculating radius or offset from center for y-axis. Equivalent to translationHeightOf(boundaries) / 2.

範例

typescript
halfTranslationHeightOf({
  min: { x: -100, y: -50 },
  max: { x: 100, y: 50 }
}); // 50