Examples of Zoom


Examples of com.bitfire.postprocessing.filters.Zoom

    if (radialBlur != null) {
      doRadial = true;
      zoom = null;
    } else {
      doRadial = false;
      zoom = new Zoom();
    }

    oneOnW = 1f / (float)viewportWidth;
    oneOnH = 1f / (float)viewportHeight;
  }
View Full Code Here

Examples of com.google.speedtracer.client.timeline.fx.Zoom

  public MainTimeLine(Container container,
      List<Visualization<?, ?>> visualizations, TimeLineModel timeLineModel,
      Zoom.CallBack cb, MainTimeLine.Resources resources) {
    super(container, resources.mainTimeLineCss().mainTimeLine(), timeLineModel);
    this.transition = new Zoom(this);
    transition.setCallBack(cb);
    addGraph(new MainGraph(this, visualizations, resources));
    // Create the Draggable selection widget.
    new TransientGraphSelection(this, resources);
    // Add graph callout widget.
View Full Code Here

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
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.