// モデル作成オプションを変更する
        private void ChangeReconstructionOption()
        {
            if ( reconstructionOption ==
                    PXCM3DScan.ReconstructionOption.NO_RECONSTRUCTION_OPTIONS ){
                reconstructionOption = PXCM3DScan.ReconstructionOption.SOLIDIFICATION;
            }
            else {
                reconstructionOption = PXCM3DScan.ReconstructionOption.NO_RECONSTRUCTION_OPTIONS;
            }

            ShowReconstructionOption();
        }
        // モデル作成オプションを変更する
        private void ChangeReconstructionOption()
        {
            if (reconstructionOption ==
                PXCM3DScan.ReconstructionOption.NO_RECONSTRUCTION_OPTIONS)
            {
                reconstructionOption = PXCM3DScan.ReconstructionOption.SOLIDIFICATION;
            }
            else
            {
                reconstructionOption = PXCM3DScan.ReconstructionOption.NO_RECONSTRUCTION_OPTIONS;
            }

            ShowReconstructionOption();
        }