Numworks Epsilon  1.4.1
Graphing Calculator Operating System
sine.h
Go to the documentation of this file.
1 #ifndef POINCARE_SINE_H
2 #define POINCARE_SINE_H
3 
8 
9 namespace Poincare {
10 
11 class Sine : public StaticHierarchy<1> {
13  friend class Tangent;
14  float characteristicXRange(Context & context, AngleUnit angleUnit = AngleUnit::Default) const override;
15 public:
16  Type type() const override;
17  Expression * clone() const override;
18  template<typename T> static Complex<T> computeOnComplex(const Complex<T> c, AngleUnit angleUnit = AngleUnit::Radian);
19 private:
20  /* Layout */
21  ExpressionLayout * privateCreateLayout(PrintFloat::Mode floatDisplayMode, ComplexFormat complexFormat) const override {
22  return LayoutEngine::createPrefixLayout(this, floatDisplayMode, complexFormat, name());
23  }
24  int writeTextInBuffer(char * buffer, int bufferSize, int numberOfSignificantDigits = PrintFloat::k_numberOfStoredSignificantDigits) const override {
25  return LayoutEngine::writePrefixExpressionTextInBuffer(this, buffer, bufferSize, numberOfSignificantDigits, name());
26  }
27  const char * name() const { return "sin"; }
28  /* Simplication */
29  Expression * shallowReduce(Context& context, AngleUnit angleUnit) override;
30  /* Evaluation */
31  Expression * privateApproximate(SinglePrecision p, Context& context, AngleUnit angleUnit) const override {
32  return ApproximationEngine::map<float>(this, context, angleUnit,computeOnComplex<float>);
33  }
34  Expression * privateApproximate(DoublePrecision p, Context& context, AngleUnit angleUnit) const override {
35  return ApproximationEngine::map<double>(this, context, angleUnit, computeOnComplex<double>);
36  }
37 };
38 
39 }
40 
41 #endif
Type type() const override
Definition: sine.cpp:16
Expression * clone() const override
Definition: sine.cpp:20
c(generic_all_nodes)
static ExpressionLayout * createPrefixLayout(const Expression *expression, PrintFloat::Mode floatDisplayMode, Expression::ComplexFormat complexFormat, const char *operatorName)
static int writePrefixExpressionTextInBuffer(const Expression *expression, char *buffer, int bufferSize, int numberOfDigits, const char *operatorName)
static Complex< T > computeOnComplex(const Complex< T > c, AngleUnit angleUnit=AngleUnit::Radian)
Definition: sine.cpp:44