Examples of render()


Examples of Hexel.rendering.GLObj.render()

    gl.glPushMatrix();
    gl.glTranslated((float)x+xlen/2, (float)y+ylen/2, (float)z);
    gl.glScaled(.5, .5, .5);
    gl.glRotated(this.dir*180/Math.PI, 0, 0, 1);
    gl.glRotated(90, 1, 0, 0);
    obj.render(gl);
    gl.glPopMatrix();
  }

}
View Full Code Here

Examples of __TOP_LEVEL_PACKAGE__.client.managed.ui.renderer.ApplicationListPlaceRenderer.render()

    final Renderer<ProxyListPlace> placePickerRenderer = new ApplicationListPlaceRenderer();
    Cell<ProxyListPlace> placePickerCell = new AbstractCell<ProxyListPlace>() {
      @Override
      public void render(Context context, ProxyListPlace value, SafeHtmlBuilder sb) {
        sb.appendEscaped(placePickerRenderer.render(value));
      }
    };
    CellList<ProxyListPlace> placePickerList = new CellList<ProxyListPlace>(placePickerCell, getMobileListResources());
    placePickerList.setKeyboardSelectionPolicy(KeyboardSelectionPolicy.DISABLED);
    final ValuePicker<ProxyListPlace> placePickerView = new ValuePicker<ProxyListPlace>(placePickerList);
View Full Code Here

Examples of aspect.render.ViewModel.render()

    @Override
    public void render() {
        ViewModel model = counter.getModel();
        model.transform.position = new Vector3(96, getCanvasHeight() - 32);
        setRenderMode(ORTHOGRAPHIC);
        model.render();
        setRenderMode(PERSPECTIVE);
    }

    @Override
    public void keyEvent(KeyEvent evt) {
View Full Code Here

Examples of at.reppeitsolutions.formbuilder.components.html.formbuilder.HtmlFormBuilderItem.render()

            }
            if (mode != null) {
                comp.setMode(mode);
            }
            //render html object
            comp.render();
            //add dialog to html object
            if (dialog && diag != null) {
                comp.getChildren().add(diag);
            }
            res.getChildren().add(comp);
View Full Code Here

Examples of at.reppeitsolutions.formbuilder.components.pdf.formbuilder.PdfFormBuilderItem.render()

        }
        if (mode != null) {
            comp.setMode(mode);
        }
        //render html object
        return comp.render();
    }
}
View Full Code Here

Examples of azkaban.common.web.Page.render()

          page.add("id", "0");
          page.add("name", jobID);
         
          if (flow == null) {
            addError(req, "Job " + jobID + " not found.");
            page.render();
            return;
          }
         
          // This will be used the other
          Flow displayFlow = new Flow(flow.getName(), (Props)null);
View Full Code Here

Examples of ca.simplegames.micro.viewers.ViewRenderer.render()

            if (model != null && !model.isEmpty()) {
                context.getMap().putAll(model);
            }

            engine.render(path, repository, context, writer);

            return writer.toString();

        } finally {
            if (view != null && !view.getFiltersAfter().isEmpty()) {
View Full Code Here

Examples of ch.bfh.ti.kybernetik.gui.slick.components.LightBulbComponent.render()

    }

    Iterator<LightBulbComponent> it2 = this.lightBulbComponents.iterator();
    while (it2.hasNext()) {
      LightBulbComponent lbc = it2.next();
      lbc.render(gc, g);
    }

    if (renderTracing) {
      Iterator<RoboterMoveListComponent> it3 = this.roboterMoveListComponent.iterator();
      while (it3.hasNext()) {
View Full Code Here

Examples of ch.bfh.ti.kybernetik.gui.slick.components.RoboterComponent.render()

    g.setAntiAlias(true);

    Iterator<RoboterComponent> it = this.roboterComponents.iterator();
    while (it.hasNext()) {
      RoboterComponent rc = it.next();
      rc.render(gc, g);
    }

    Iterator<LightBulbComponent> it2 = this.lightBulbComponents.iterator();
    while (it2.hasNext()) {
      LightBulbComponent lbc = it2.next();
View Full Code Here

Examples of ch.bfh.ti.kybernetik.gui.slick.components.RoboterMoveListComponent.render()

    if (renderTracing) {
      Iterator<RoboterMoveListComponent> it3 = this.roboterMoveListComponent.iterator();
      while (it3.hasNext()) {
        RoboterMoveListComponent rtc = it3.next();
        rtc.render(gc, g);
      }
    }

    // Render current mode
    g.setColor(Color.green);
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.