Class SCNMorpherCalculationMode


  • public final class SCNMorpherCalculationMode
    extends java.lang.Object
    • Field Summary

      Fields 
      Modifier and Type Field Description
      static long Additive
      BaseMesh + w0 * Target0 + w1 * Target1 + ...
      static long Normalized
      (1 - w0 - w1 - ...) * BaseMesh + w0 * Target0 + w1 * Target1 + ...
    • Method Summary

      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Field Detail

      • Normalized

        public static final long Normalized
        (1 - w0 - w1 - ...) * BaseMesh + w0 * Target0 + w1 * Target1 + ...
        See Also:
        Constant Field Values
      • Additive

        public static final long Additive
        BaseMesh + w0 * Target0 + w1 * Target1 + ...
        See Also:
        Constant Field Values