Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
seto77 committed Feb 27, 2024
1 parent b41262f commit 614bba7
Show file tree
Hide file tree
Showing 52 changed files with 5,015 additions and 4,564 deletions.
2 changes: 1 addition & 1 deletion Crystallography.Controls/Crystal/AtomControl.cs
Original file line number Diff line number Diff line change
Expand Up @@ -589,7 +589,7 @@ private Atoms GetFromInterface()

double[] aniso = UseTypeU ?
[Aniso11 / 100, Aniso22 / 100, Aniso33 / 100, Aniso12 / 100, Aniso23 / 100, Aniso13 / 100] :
new[] { Aniso11, Aniso22, Aniso33, Aniso12, Aniso23, Aniso13 };
[Aniso11, Aniso22, Aniso33, Aniso12, Aniso23, Aniso13];

double[] anisoErr = UseTypeU ?
[Aniso11Err / 100, Aniso22Err / 100, Aniso33Err / 100, Aniso12Err / 100, Aniso23Err / 100, Aniso13Err / 100] :
Expand Down
1,808 changes: 904 additions & 904 deletions Crystallography.Controls/Crystal/CrystalControl.Designer.cs

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions Crystallography.Controls/Crystal/CrystalControl.cs
Original file line number Diff line number Diff line change
Expand Up @@ -554,7 +554,7 @@ public void toAnotherSpaceGroup(int destNum)
cry.SymmetrySeriesNumber = destNum;
cry.SetAxis();

Vector3D srcA = cry.A_Axis, srcB = cry.B_Axis, srcC = cry.C_Axis, dstA, dstB, dstC;
Vector3DBase srcA = cry.A_Axis, srcB = cry.B_Axis, srcC = cry.C_Axis, dstA, dstB, dstC;

if (srcExtra == "H")
{//HをRに変換
Expand Down Expand Up @@ -637,7 +637,7 @@ public void toAnotherSpaceGroup(int destNum)
_ => (x, y, z),
};

static (Vector3D A, Vector3D B, Vector3D C) convertAxisMonoclinic(Vector3D a, Vector3D b, Vector3D c, string setting, bool forward = true)
static (Vector3DBase A, Vector3DBase B, Vector3DBase C) convertAxisMonoclinic(Vector3DBase a, Vector3DBase b, Vector3DBase c, string setting, bool forward = true)
=> setting switch
{
"b2" => forward ? (-c - a, b, a) : (c, b, -c - a),
Expand Down
Loading

0 comments on commit 614bba7

Please sign in to comment.