Esempio n. 1
0
        public void OnPreparationStepCompleted(ICPPreparationStepCompletedMessage message)
        {
            referenceToLocalTransform = message.Transform.LocalToOther(this.transform);

            ICPFragmentType type = parentsICPController.FragmentType;

            UpdatePoints(message.Correspondences.GetPointsByType(type));
        }
        public void OnPreparationStepCompleted(ICPPreparationStepCompletedMessage message)
        {
            ReferenceTransform = message.Transform;
            ICPFragmentType type = ICPControllerOfParent.FragmentType;

            if (ShowNormals)
            {
                StoreNormals(message.Correspondences.GetPointsByType(type));
            }
        }
Esempio n. 3
0
 public void OnToggleIsICPFragment(ICPFragmentType type)
 {
     ToggleIsStaticFragment((type == ICPFragmentType.Static));
     ToggleIsModelFragment((type == ICPFragmentType.Model));
 }