Исправление ошибки в методе SetColumn2 / Bug fix at methods SetColumn2

This commit is contained in:
Andrey Pokidov 2024-11-16 00:39:09 +07:00
parent c38c5ac857
commit 1afbf8c1d6
4 changed files with 10 additions and 10 deletions

View file

@ -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)

View file

@ -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)

View file

@ -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)

View file

@ -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)