2
0
Files
guilloche-generator/dist/nls-guilloche/nls/services/animation.service.d.ts

13 lines
416 B
TypeScript

import { Graph } from '../models/graph.model';
import { NlsMathService } from './math.service';
import { NlsHistoryService } from './history.service';
export declare class NlsAnimationService {
private math;
private historyService;
graphs: Graph[];
speed: number;
range: number;
constructor(math: NlsMathService, historyService: NlsHistoryService);
animate(initialGraph: Graph): Graph;
}