Package mikera.vectorz.ops

Examples of mikera.vectorz.ops.Inverse


  }
 
  @Override
  public Op getInverse() {
    if (hasInverse()) {
      return new Inverse(this);
    } else {
      throw new UnsupportedOperationException("No inverse available: "+this.getClass());
    }
  }
View Full Code Here

TOP

Related Classes of mikera.vectorz.ops.Inverse

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.