Class SettingManager

java.lang.Object
net.softhills.vizcore.SettingManager

public class SettingManager extends Object
Setting Manager
  • Method Details

    • save

      public void save()
      설정 값을 저장 하는 함수 재실행 시에도 유지
       
       VIZCore vizwing = new VIZCore();
      
       //설정값 지정
       vizcore.Model.isUseEdge //모델 엣지 사용 Default = true
       vizcore.Model.isUseUDA //UDA데이터 사용 Default = true
       vizcore.Model.isUseBody //Body데이터 사용 Default = true
       vizcore.Object3D.isMultiSelectMode //다중 선택 모드 Default = false
       vizcore.View.isPivotVisible //피봇 보이기 Default = true
       vizcore.View.sensitivity //민감도 Default = 1.0f
       vizcore.View.isPivotPostionBySelectedNodeCenter //회전시 피봇을 선택 모델 중심에 맞춤 Default = false
       vizcore.View.isSetTransparentObjectAsPick //투명 오브젝트 선택 Default = true
       vizcore.View.getEnableHardwareAcceleration() //하드웨어 가속 사용 Default = true
       vizcore.View.isUseOsnap //osnap 사용 Default = true
      
       vizcore.Setting.save();
       
       
    • showDialog

      public void showDialog()
      설정 다이얼로그
       
       VIZCore vizwing = new VIZCore();
      
       vizcore.Setting.showDialog();
       
       
    • showDialog

      public void showDialog(android.content.Context context)
      설정 다이얼로그
      Parameters:
      context - Context
       
       VIZCore vizwing = new VIZCore();
      
       vizcore.Setting.showDialog(this);