Исправления в матрицах 2x3 и 3x2 / Several fixes in 2x3 and 3x2 matrixes
This commit is contained in:
parent
3ba55c7524
commit
301cabe8de
22 changed files with 3805 additions and 3744 deletions
|
|
@ -1,20 +1,20 @@
|
|||
using System;
|
||||
|
||||
namespace Geometry
|
||||
{
|
||||
public class DPUtility
|
||||
{
|
||||
public const double EPSYLON = 5E-14;
|
||||
public const double TWO_EPSYLON = 1E-13;
|
||||
public const double SQUARE_EPSYLON = 2.5E-27;
|
||||
|
||||
public const double EPSYLON_EFFECTIVENESS_LIMIT = 1.0;
|
||||
|
||||
public const double ONE_THIRD = 0.333333333333333333;
|
||||
public const double ONE_SIXTH = 0.166666666666666667;
|
||||
public const double ONE_NINETH = 0.111111111111111111;
|
||||
|
||||
public const double GOLDEN_RATIO_HIGH = 1.61803398874989485;
|
||||
public const double GOLDEN_RATIO_LOW = 0.61803398874989485;
|
||||
}
|
||||
}
|
||||
using System;
|
||||
|
||||
namespace Geometry
|
||||
{
|
||||
public class DPUtility
|
||||
{
|
||||
public const double EPSYLON = 5E-14;
|
||||
public const double TWO_EPSYLON = 1E-13;
|
||||
public const double SQUARE_EPSYLON = 2.5E-27;
|
||||
|
||||
public const double EPSYLON_EFFECTIVENESS_LIMIT = 1.0;
|
||||
|
||||
public const double ONE_THIRD = 0.333333333333333333;
|
||||
public const double ONE_SIXTH = 0.166666666666666667;
|
||||
public const double ONE_NINETH = 0.111111111111111111;
|
||||
|
||||
public const double GOLDEN_RATIO_HIGH = 1.61803398874989485;
|
||||
public const double GOLDEN_RATIO_LOW = 0.61803398874989485;
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue