| """ | |
| SDF-Based Analytic Geometry Solver Package | |
| Core modules for geometric problem solving using Signed Distance Fields. | |
| """ | |
| from .primitives import ( | |
| DEVICE, | |
| SDFPrimitive, | |
| PointSDF, | |
| CircleSDF, | |
| EllipseSDF, | |
| HyperbolaSDF, | |
| ParabolaSDF, | |
| LineSDF, | |
| LineSegmentSDF, | |
| TriangleEdgesSDF, | |
| TriangleFillSDF, | |
| RightAngleSDF | |
| ) | |
| from .constraints import GeometricConstraints | |
| from .parser import ProblemParser | |
| from .renderer import SDFRenderer | |
| from .optimizer import GeometryOptimizer | |
| from .processor import SDFBatchProcessor | |
| __all__ = [ | |
| # Device | |
| 'DEVICE', | |
| # Primitives | |
| 'SDFPrimitive', | |
| 'PointSDF', | |
| 'CircleSDF', | |
| 'EllipseSDF', | |
| 'HyperbolaSDF', | |
| 'ParabolaSDF', | |
| 'LineSDF', | |
| 'LineSegmentSDF', | |
| 'TriangleEdgesSDF', | |
| 'TriangleFillSDF', | |
| 'RightAngleSDF', | |
| # Core classes | |
| 'GeometricConstraints', | |
| 'ProblemParser', | |
| 'SDFRenderer', | |
| 'GeometryOptimizer', | |
| 'SDFBatchProcessor', | |
| ] | |
| __version__ = '1.0.0' | |