Examples of move()


Examples of com.jme3.scene.Geometry.move()

    float selectedSizeVariation = (float) (rand * (patchScaleVariation - (1 / patchScaleVariation)))
        + (1 / patchScaleVariation);
    Quad faceShape = new Quad((patchWidth * selectedSizeVariation),
        patchHeight * selectedSizeVariation, false);
    Geometry face1 = new Geometry("face1", faceShape);
    face1.move(-(patchWidth * selectedSizeVariation) / 2, 0, 0);
    grassPatch.attachChild(face1);

    Geometry face2 = new Geometry("face2", faceShape);
    face2.rotate(new Quaternion().fromAngleAxis(-FastMath.PI / 2,
        new Vector3f(0, 1, 0)));

Examples of com.jme3.scene.Node.move()

        yRailRight.setMaterial(polishedStainlessTexture);
        yRailRight.move(300 - 6, 12.7f, 0);
        machine.attachChild(yRailRight);

        Node gantry = createGantryNode();
        gantry.move(0, 50 / 2 + 12.7f + 6, 0);
        machine.attachChild(gantry);;

        return machine;
    }

Examples of com.jme3.scene.Spatial.move()

    private Spatial createTile(JSONObject environment, String key, int x, int y) throws JSONException {
        String terrain = environment.getJSONObject(key).get("terrain").toString();
        Spatial tile = model.tileTypes.get(terrain).clone();
        tile.setMaterial(model.materials.get(terrain));
        tile.setName(key);
        tile.move(x, 0, y);
        return tile;
    }

    @Deprecated
    private Geometry createObject(String key, int x, int y) {

Examples of com.l2jfrozen.gameserver.ai.L2ControllableMobAI.move()

      int signY = Rnd.nextInt(2) == 0 ? -1 : 1;
      int randX = Rnd.nextInt(MobGroupTable.RANDOM_RANGE);
      int randY = Rnd.nextInt(MobGroupTable.RANDOM_RANGE);

      L2ControllableMobAI ai = (L2ControllableMobAI) mobInst.getAI();
      ai.move(activeChar.getX() + signX * randX, activeChar.getY() + signY * randY, activeChar.getZ());
      ai = null;
    }
  }

  public void setFollowMode(L2Character character)

Examples of com.matis_digital.simulation.gui.utils.Particle.move()

            }
        }
        for (int idx = 0; idx < size(); idx++)
        {
            final Particle particle = get(idx);
            particle.move();
        }
        if (Constants.MUSH == true)
        {
            for (int idx = 0; idx < size(); idx++)
            {

Examples of com.melitronic.domain.product.client.DmProduct.move()

      if (list[2] != null) {
        before = ((com.melitronic.rmapp.model.Item)list[2]).getId();
      }
      DmProduct dmProduct =
        DmProductFactory.instance().getClient(getCallContext());
      dmProduct.move(item.getId(), newParent2, before, getCallContext());

    }

    public void itemPositionChanged(com.melitronic.rmapp.model.Item item, AbstractListItem[] list,
            com.melitronic.rmapp.model.Deployment oldParent,

Examples of com.netflix.priam.utils.JMXNodeTool.move()

      nodetool = JMXNodeTool.instance(config);
    } catch (JMXConnectionException e) {
      return Response.status(503).entity("JMXConnectionException")
          .build();
    }
        nodetool.move(newToken);
        return Response.ok(REST_SUCCESS, MediaType.APPLICATION_JSON).build();
    }

    @GET
    @Path("/scrub")

Examples of com.projity.graphic.configuration.SpreadSheetFieldArray.move()

      super.moveColumn(columnIndex, newIndex);

    if (columnIndex == newIndex)
      return;
    SpreadSheetFieldArray f = (SpreadSheetFieldArray) getFieldArray();
    fieldArray = f.move(columnIndex+1, newIndex+1);
  }

  public ArrayList getFieldArray() {
    return fieldArray;
  }

Examples of com.volantis.xml.sax.recorder.impl.attributes.AttributesWindow.move()

        AttributesWindow window = container.createWindow();

        int index;

        // First search for attributes in the first set of attributes.
        window.move(offset1, offset2 - offset1);
        index = window.getIndex("", "abc");
        assertEquals("Index incorrect for attribute", 0, index);
        index = window.getIndex("abc");
        assertEquals("Index incorrect for attribute", 0, index);

Examples of com.zaranux.os.client.programs.Explorer.move()

    run(t);
    t.move(100, 100);

    Explorer e1 = new Explorer();
    run(e1);
    e1.move(400, 270);
   
    Explorer e2 = new Explorer();
    run(e2);
    e2.move(600, 130);
   
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.