- Forked from Godot Engine 4.7-dev (MIT License) - Rebranded to AeThex Engine with cyan/purple theme - Added AI-powered development assistant module - Integrated Claude API for code completion & error fixing - Custom hexagon logo and branding - Multi-platform CI/CD (Windows, Linux, macOS) - Built Linux editor binary (151MB) - Complete source code with all customizations Tech Stack: - C++ game engine core - AI Module: Claude 3.5 Sonnet integration - Build: SCons, 14K+ source files - License: MIT (Godot) + Custom (AeThex features) Ready for Windows build via GitHub Actions!
14 lines
240 B
C++
14 lines
240 B
C++
|
|
#pragma once
|
|
|
|
#include "base.h"
|
|
|
|
namespace msdfgen {
|
|
|
|
// ax^2 + bx + c = 0
|
|
int solveQuadratic(double x[2], double a, double b, double c);
|
|
|
|
// ax^3 + bx^2 + cx + d = 0
|
|
int solveCubic(double x[3], double a, double b, double c, double d);
|
|
|
|
}
|