mirror of
https://github.com/NoFxAiOS/nofx.git
synced 2026-07-04 19:41:02 +08:00
- Multi-AI competition mode (Qwen vs DeepSeek) - Binance Futures integration - AI self-learning mechanism - Professional web dashboard - Complete risk management system
10 lines
182 B
JavaScript
10 lines
182 B
JavaScript
import {pi, sqrt, tau} from "../math.js";
|
|
|
|
export default {
|
|
draw(context, size) {
|
|
const r = sqrt(size / pi);
|
|
context.moveTo(r, 0);
|
|
context.arc(0, 0, r, 0, tau);
|
|
}
|
|
};
|