Ejemplo n.º 1
0
 /// <summary>
 /// Creates a NodeSet from the provided source and target nodeset indexes and mapping function.
 /// </summary>
 public static NodeSetMapping Create(int srcNodeSetIdx, int tgtNodeSetIdx, INodeSetMappingFunction mappingFn)
 {
     return(new NodeSetMapping(srcNodeSetIdx, tgtNodeSetIdx, mappingFn));
 }
Ejemplo n.º 2
0
 /// <summary>
 /// Creates a NodeSet from the provided source and target nodeset indexes and mapping function.
 /// </summary>
 public static NodeSetMapping Create(int srcNodeSetIdx, int tgtNodeSetIdx, INodeSetMappingFunction mappingFn)
 {
     return new NodeSetMapping(srcNodeSetIdx, tgtNodeSetIdx, mappingFn);
 }
Ejemplo n.º 3
0
 /// <summary>
 /// Constructs with the provided source and target nodeset indexes and mapping function to apply between those sets.
 /// </summary>
 public NodeSetMapping(int srcNodeSetIdx, int tgtNodeSetIdx, INodeSetMappingFunction mappingFn)
 {
     _srcNodeSetIdx = srcNodeSetIdx;
     _tgtNodeSetIdx = tgtNodeSetIdx;
     _mappingFn     = mappingFn;
 }
Ejemplo n.º 4
0
 /// <summary>
 /// Constructs with the provided source and target nodeset indexes and mapping function to apply between those sets.
 /// </summary>
 public NodeSetMapping(int srcNodeSetIdx, int tgtNodeSetIdx, INodeSetMappingFunction mappingFn)
 {
     _srcNodeSetIdx = srcNodeSetIdx;
     _tgtNodeSetIdx = tgtNodeSetIdx;
     _mappingFn = mappingFn;
 }