Examples of assignFromEnvelope()


Examples of org.jwildfire.create.tina.base.motion.MotionCurve.assignFromEnvelope()

    dlg.setVisible(true);
    if (dlg.isConfirmed()) {
      if (owner.isUseUndoManager()) {
        owner.getOwner().undoManager.saveUndoPoint(flame);
      }
      curve.assignFromEnvelope(envelope);
      owner.getOwner().refreshFlameImage(false);
      refreshCurve(flame);
    }
  }
View Full Code Here

Examples of org.jwildfire.create.tina.base.motion.MotionCurve.assignFromEnvelope()

    if (owner.isUseUndoManager()) {
      owner.getOwner().undoManager.saveUndoPoint(flame);
    }

    MotionCurve curve = getCurve(flame);
    curve.assignFromEnvelope(ctrl.getCurrEnvelope());

    owner.getOwner().refreshFlameImage(false);
  }

  public void setVisible(boolean pVisible) {
View Full Code Here

Examples of org.jwildfire.create.tina.base.motion.MotionCurve.assignFromEnvelope()

      curve.setEnabled(true);
    }
    else {
      MotionCurve newParentCurve = new MotionCurve();
      newParentCurve.setEnabled(true);
      newParentCurve.assignFromEnvelope(envelope);
      while (curve.getParent() != null) {
        curve = curve.getParent();
      }
      curve.setParent(newParentCurve);
    }
View Full Code Here

Examples of org.jwildfire.create.tina.base.motion.MotionCurve.assignFromEnvelope()

          break;
        case COLOR_CURVE:
          if (curveToPreviewPropertyPath != null) {
            MotionCurve curve = getMotionCurve(res, curveToPreviewPropertyPath);
            if (curve != null) {
              curve.assignFromEnvelope(ctrl.getCurrEnvelope());
            }
          }
          break;
      }
      return res;
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.