KO
|
EN
gitlite — search
Search
#python
#java
#python3
#arduino
#golang
#machine-learning
#rust
#html
#flask
#javascript
#seismology
#nodejs
LegendUtils
★ 21
Open GitHub ↗
一堆自写工具类,视自己的需要而添加……
Download README (.md)
Explore Similar Repositories
AnimationManager
:
Animation Manager for XAML
ros-testing-tutorial
:
ROS files and exercises for the ros-tdd seminar I gave to the Social Robots Group on march 2014
diy-dogecoin-digger
:
Do-It-Yourself Dogecoin Digger (DDD): Start digging in your own back yard!
purescript-refs
:
Mutable value references
ExpandSync
:
A simple engine to sync aText and TextExpander iOS
// repository documentation
Was this content helpful?
★ 0
(0 ratings)
Select Rating:
★
★
★
★
★
Submit Feedback
Recent Feedback
×
Download README
Do you want to download the
README.md
file for
LegendUtils
?
Download (.md)
LegendUtils =========== Various tools **markdown test below** ``` public float getInterpolation(float x) { float result; if (x < 0.5) { result = (float) (1.0f - Math.pow((1.0f - 2 * x), 2 * mFactor)) / 2; } else { result = (float) Math.pow((x - 0.5) * 2, 2 * mFactor) / 2 + 0.5f; } return result; } ```