Skip to content
Snippets Groups Projects
Commit 50558401 authored by francois.grand's avatar francois.grand
Browse files

#46 ajout d'un squelette de classe pour le Nub des sections paramétrées

parent a6a0b5f2
No related branches found
No related tags found
No related merge requests found
import { Nub } from "../nub";
import { acSection } from "./section_type";
import { Result } from "../util/result";
/**
* Nub sur les sections paramétrées
*/
export class SectionParametree extends Nub {
constructor(sect: acSection, dbg: boolean = false) {
super(sect.prms, dbg);
}
/**
* paramétrage de la calculabilité des paramètres
*/
protected setParametersCalculability() {
}
Equation(sVarCalc: string): Result {
throw new Error(`SectionParam.Equation() : calcul sur ${sVarCalc} non implémenté`);
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment