Summary description for MathFunctions.
Пример #1
0
 /// <summary>
 /// Initializes a new instance of the <see cref="Map"/> class.
 /// An internal constructor so this class must
 /// be made via static map.FromFile...
 /// </summary>
 /// <param name="fileName">Name of the file.</param>
 /// <remarks></remarks>
 internal Map(string fileName)
 {
     filePath   = fileName;
     Functions  = new MiscFunctions(this);
     ChunkTools = new ChunkAdder(this);
 }
Пример #2
0
 /// <summary>
 /// Initializes a new instance of the <see cref="Map"/> class.
 /// An internal constructor so this class must
 /// be made via static map.FromFile...
 /// </summary>
 /// <param name="fileName">Name of the file.</param>
 /// <remarks></remarks>
 internal Map(string fileName)
 {
     filePath = fileName;
     Functions = new MiscFunctions(this);
     ChunkTools = new ChunkAdder(this);
 }