Beispiel #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));
 }
Beispiel #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);
 }
Beispiel #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;
 }
Beispiel #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;
 }