Skip to content

Commit

Permalink
Lossy math, quicker but has some losses
Browse files Browse the repository at this point in the history
  • Loading branch information
IThundxr committed Feb 17, 2024
1 parent bd2d9d2 commit e826f79
Show file tree
Hide file tree
Showing 8 changed files with 10,890 additions and 13 deletions.
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,5 @@
Modular Mod development framework based on Quark's Module System.

Read the pitch and design idea here: https://forum.violetmoon.org/d/78-project-zeta-aka-quark-on-fabric-real

This mod makes use of the [jafama](https://github.com/jeffhain/jafama) by jeffhain, licensed under the Apache 2.0 License.
2,134 changes: 2,134 additions & 0 deletions src/main/java/net/jafama/CmnFastMath.java

Large diffs are not rendered by default.

24 changes: 24 additions & 0 deletions src/main/java/net/jafama/DoubleWrapper.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
/*
* Copyright 2012 Jeff Hain
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package net.jafama;

public class DoubleWrapper {
public double value;
@Override
public String toString() {
return Double.toString(this.value);
}
}
Loading

0 comments on commit e826f79

Please sign in to comment.