Exemple #1
0
 /// <summary>
 /// Initializes a new instance of the <see cref="VectorProductOperNode"/> class.
 /// </summary>
 /// <param name="node">The <see cref="VectorProductOperNode"/> to clone.</param>
 public VectorProductOperNode(VectorProductOperNode node)
     : base(node)
 {
     _productMethod = node._productMethod;
 }
Exemple #2
0
 /// <summary>
 /// Initializes a new instance of the <see cref="VectorProductOperNode"/> class.
 /// </summary>
 /// <param name="productMethod">The method for vector multiplication.</param>
 public VectorProductOperNode(VectorProductMethod productMethod)
 {
     _productMethod = productMethod;
 }