C# Class Vertesaur.Generation.Expressions.SinExpression

A sine expression.
Inheritance: ReducibleUnaryExpressionBase
Show file Open project: aarondandy/vertesaur

Public Methods

Method Description
Reduce ( ) : Expression
SinExpression ( Expression input, IExpressionGenerator generator = null ) : System

Creates a new sine expression.

Private Methods

Method Description
SinExpression ( ) : System

Method Details

Reduce() public method

public Reduce ( ) : Expression
return System.Linq.Expressions.Expression

SinExpression() public method

Creates a new sine expression.
public SinExpression ( Expression input, IExpressionGenerator generator = null ) : System
input System.Linq.Expressions.Expression The expression to calculate the sine of.
generator IExpressionGenerator The optional expression generator used during reduction.
return System