Examples of Movable


Examples of Hexel.things.types.Movable

            thingsToRemove.add(deer);
          }
        }

        if (thing instanceof Movable) {
          Movable movable = (Movable) thing;
          movable.accelerate(fps, 0, 0, -9.8);
          Vector3d reqMoveVector = movable.getReqMoveVector(fps);
          moveMovable(movable, reqMoveVector, tmp);
        }
        if (thing instanceof BlockManipulator) {
          BlockAction action = ((BlockManipulator) thing)
              .getBlockAction();
View Full Code Here

Examples of jade.core.mobility.Movable

  private transient AgentMobilityHelper mobHelper;

  private void initMobHelper() throws ServiceException {
    if (mobHelper == null) {
      mobHelper = (AgentMobilityHelper) getHelper(AgentMobilityHelper.NAME);
      mobHelper.registerMovable(new Movable() {
        public void beforeMove() {
          Agent.this.beforeMove();
        }

        public void afterMove() {
View Full Code Here

Examples of org.openpnp.machine.reference.simulator.Machine.Movable

                        }
                        String[] parts = line.split(",");
                        System.out.println(line);
                        if (parts[0].equals("m")) {
                            // m,Camera|Actuator|Nozzle1|Nozzle2,x.xx,y.yy,z.zz,c.cc
                            Movable movable = Movable.valueOf(parts[1]);
                            double x = getDouble(parts[2]);
                            double y = getDouble(parts[3]);
                            double z = getDouble(parts[4]);
                            double c = getDouble(parts[5]);
                            machine.moveTo(movable, x, y, z, c);
                            out.print("ok\n");
                        }
                        else if (parts[0].equals("a")) {
                            // a,true|false
                            boolean on = parts[1].equals("true");
                            machine.actuate(on);
                            out.print("ok\n");
                        }
                        else if (parts[0].equals("p")) {
                            // m,Nozzle1|Nozzle2,true|false
                            Movable movable = Movable.valueOf(parts[1]);
                            boolean pick = parts[2].equals("true");
                            if (pick) {
                                machine.pick(movable);
                            }
                            else {
View Full Code Here

Examples of org.uengine.processdesigner.framework.Movable

  public transient boolean isDeleted;

  public TransformerDesigner(){
    super(new BorderLayout());
   
        Movable mouseListener = new Movable(this){
            boolean showMenu = false;

      public void mouseDragged(MouseEvent arg0) {
        super.mouseDragged(arg0);
//        transformer.getLinkPanel().revalidate();
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.