Package hype.core.util

Examples of hype.core.util.HVector


    _goals.add(g);
    return this;
  }
 
  public HSwarm addGoal(float x, float y) {
    return addGoal(new HVector(x,y));
  }
View Full Code Here


  public HSwarm addGoal(float x, float y) {
    return addGoal(new HVector(x,y));
  }
 
  public HSwarm addGoal(float x, float y, float z) {
    return addGoal(new HVector(x,y,z));
  }
View Full Code Here

TOP

Related Classes of hype.core.util.HVector

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.