public Vector3DDotProduct() : base("Vector 3D DotProduct", null, BinaryOperator.GetCenteredOperator("x"))
 {
 }
Пример #2
0
 public BooleanImplicationOperation() : base("Boolean Implication", null, BinaryOperator.GetCenteredOperator("->"))
 {
     Calculate();
 }
 public BooleanOrOperation() : base("Boolean Or", null, BinaryOperator.GetCenteredOperator("OR"))
 {
     Calculate();
 }
Пример #4
0
 public Vector2DAddOperation() : base("Vector 2D add", null, BinaryOperator.GetCenteredOperator("+"))
 {
 }
 public Point2DAngleBetweenLineSegmentsOperation() : base("Point 2D Angle between linesegments",
                                                          UnaryOperator.GetPrefixOperator("∠", OperatorPosition.Center),
                                                          BinaryOperator.GetCenteredOperator(","),
                                                          BinaryOperator.GetCenteredOperator(","))
 {
 }
Пример #6
0
 public BooleanAndOperation() : base("Boolean And", null, BinaryOperator.GetCenteredOperator("AND"))
 {
     Calculate();
 }
 public BooleanIdentityOperation() : base("Boolean Identity", null, BinaryOperator.GetCenteredOperator("↔"))
 {
     Calculate();
 }
 public Point2DAddOperation() : base("Point 2D add", null, BinaryOperator.GetCenteredOperator("+"))
 {
 }