2
0

restore backup and add opencode support

This commit is contained in:
2025-09-23 12:02:03 +02:00
parent b99d2ff835
commit c295660631
72 changed files with 7035 additions and 7198 deletions

View File

@@ -0,0 +1,16 @@
import { NlsMathService } from './math.service';
import { Graph } from './../models/graph.model';
import { Point } from './../models/point.model';
export declare class NlsGraphService {
private math;
private graphs;
private animation;
constructor(math: NlsMathService);
get(): Graph[];
set(newGraphs: Graph[]): void;
readonly isAnimated: boolean;
startAnimation(): void;
stopAnimation(): void;
spreadOrthogonal(start: Point, spacing: number): IterableIterator<Point>;
shiftPoint(point: Point, radians: number, spacing: number): Point;
}