Исправление ошибки в методе SetColumn2 / Bug fix at methods SetColumn2
This commit is contained in:
parent
c38c5ac857
commit
1afbf8c1d6
4 changed files with 10 additions and 10 deletions
|
|
@ -160,8 +160,8 @@ namespace Geometry
|
|||
|
||||
public void SetColumn2(double r1, double r2)
|
||||
{
|
||||
this.r1c3 = r1;
|
||||
this.r2c3 = r2;
|
||||
this.r1c2 = r1;
|
||||
this.r2c2 = r2;
|
||||
}
|
||||
|
||||
public void SetColumn3(double r1, double r2)
|
||||
|
|
|
|||
|
|
@ -308,9 +308,9 @@ namespace Geometry
|
|||
|
||||
public void SetColumn2(double r1, double r2, double r3)
|
||||
{
|
||||
this.r1c3 = r1;
|
||||
this.r2c3 = r2;
|
||||
this.r3c3 = r3;
|
||||
this.r1c2 = r1;
|
||||
this.r2c2 = r2;
|
||||
this.r3c2 = r3;
|
||||
}
|
||||
|
||||
public void SetColumn3(double r1, double r2, double r3)
|
||||
|
|
|
|||
|
|
@ -157,8 +157,8 @@ namespace Geometry
|
|||
|
||||
public void SetColumn2(float r1, float r2)
|
||||
{
|
||||
this.r1c3 = r1;
|
||||
this.r2c3 = r2;
|
||||
this.r1c2 = r1;
|
||||
this.r2c2 = r2;
|
||||
}
|
||||
|
||||
public void SetColumn3(float r1, float r2)
|
||||
|
|
|
|||
|
|
@ -312,9 +312,9 @@ namespace Geometry
|
|||
|
||||
public void SetColumn2(float r1, float r2, float r3)
|
||||
{
|
||||
this.r1c3 = r1;
|
||||
this.r2c3 = r2;
|
||||
this.r3c3 = r3;
|
||||
this.r1c2 = r1;
|
||||
this.r2c2 = r2;
|
||||
this.r3c2 = r3;
|
||||
}
|
||||
|
||||
public void SetColumn3(float r1, float r2, float r3)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue