Package com.neophob.sematrix.core.effect

Examples of com.neophob.sematrix.core.effect.RotoZoom


        break;

      case CHANGE_ROTOZOOM:
        try {         
          int val = Integer.parseInt(msg[1]);
          RotoZoom r = (RotoZoom)col.getPixelControllerEffect().getEffect(EffectName.ROTOZOOM);
          r.setAngle(val);         
        } catch (Exception e) {
          LOG.log(Level.WARNING, IGNORE_COMMAND, e);
        }
        break;
View Full Code Here


      for (Effect eff: pce.getAllEffects()) {
        eff.getBuffer(v.getBuffer());
        eff.update();
       
        if (eff.getId() == EffectName.ROTOZOOM.getId()) {
          RotoZoom roto = (RotoZoom)eff;
          roto.setAngle(50);
          eff.getBuffer(v.getBuffer());
          eff.update();
          roto.setAngle(5000);
        }

        if (eff.getId() == EffectName.ZOOM.getId()) {
          Zoom zoom = (Zoom)eff;
          zoom.setZoomMode(ZoomMode.ZOOM_OUT.ordinal());
View Full Code Here

TOP

Related Classes of com.neophob.sematrix.core.effect.RotoZoom

Copyright © 2018 www.massapicom. 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.