PilotGaea 3D O'view
    正在準備搜尋索引...

    介面 Input3DBallParameter

    輸入球參數。

    interface Input3DBallParameter {
        color?: window.ov.Color;
        onCompleted?: (result: InputFailResult | Input3DBallSuccessResult) => void;
        onInputting?: (result: { geo: Input3DBallResult }) => void;
    }

    層級

    索引

    屬性

    color?: window.ov.Color

    顏色。

    new ov.Color("#FF0000")
    
    onCompleted?: (result: InputFailResult | Input3DBallSuccessResult) => void

    輸入完成的回呼函式。

    類型宣告

    onInputting?: (result: { geo: Input3DBallResult }) => void

    輸入中的回呼函式。

    類型宣告

      • (result: { geo: Input3DBallResult }): void
      • 參數

        • result: { geo: Input3DBallResult }

          輸入結果。

          • geo: Input3DBallResult

            幾何。

        回傳 void