Skip to content
Snippets Groups Projects
Select Git revision
  • 65589fbdcdc7be47279cd92267ef48fe2d5abafb
  • main default protected
  • NewGraphicSystem
  • LayeredRendering
4 results

Physical.hpp

Blame
  • Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    Operator.java 146 B
    package Formule;
    
    public interface Operator {
        String Symbol();
        double initialValue();
    
        double cumulative(double acc, double value);
    }