Package com.neophob.sematrix.core.effect

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


          eff.update();
          roto.setAngle(5000);
        }

        if (eff.getId() == EffectName.ZOOM.getId()) {
          Zoom zoom = (Zoom)eff;
          zoom.setZoomMode(ZoomMode.ZOOM_OUT.ordinal());
          zoom.update();
          zoom.getBuffer(v.getBuffer());
          zoom.setZoomMode(ZoomMode.HORIZONTAL.ordinal());
          zoom.update();
          zoom.getBuffer(v.getBuffer());
          zoom.setZoomMode(ZoomMode.VERTICAL.ordinal());
          zoom.update();
          zoom.getBuffer(v.getBuffer());
          zoom.setZoomMode(ZoomMode.ZOOM_IN.ordinal());
        }

        if (eff.getId() == EffectName.TEXTURE_DEFORMATION.getId()) {
          TextureDeformation td = (TextureDeformation)eff;
          for (int i=0;i<16;i++) {
View Full Code Here

TOP

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

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.