示例#1
0
        private void CommutatorEnergyScalePlot_MouseDown(object sender, OxyMouseDownEventArgs e)
        {
            int scale_index = EnergyScalePlot_MouseDown_Base(EnergyScale_Commutator_Plot, e);

            // Eigen Vectors
            PointsPlot_Wiring.PointsPlot_Vectorizing(output_Variables.Commutator_Orthonormal_Transformation_Real, output_Variables.Commutator_Orthonormal_Transformation_Imag, scale_index, Selected_Index);
        }
示例#2
0
        private void EnergyScalePlot_MouseDown(object sender, OxyMouseDownEventArgs e)
        {
            int scale_index = EnergyScalePlot_MouseDown_Base(EnergyScale_Plot, e);

            // Eigen Vectors
            PointsPlot_Wiring.PointsPlot_Coloring(output_Variables.Energy_Orthonormal_Transformation, scale_index, Selected_Index);
        }
示例#3
0
 private void MassScalePlot_MouseMove(object sender, OxyMouseEventArgs e)
 {
     if ((Selected_Series != null) && (Selected_Plot == MassScale_Plot))
     {
         int scale_index = EnergyScalePlot_MouseMove_Base(MassScale_Plot, e);
         // Eigen Vectors
         PointsPlot_Wiring.PointsPlot_Coloring(Selected_Index);
     }
 }
示例#4
0
 private void EnergyScalePlot_MouseMove(object sender, OxyMouseEventArgs e)
 {
     if ((Selected_Series != null) && (Selected_Plot == EnergyScale_Plot))
     {
         int scale_index = EnergyScalePlot_MouseMove_Base(EnergyScale_Plot, e);
         // Eigen Vectors
         PointsPlot_Wiring.PointsPlot_Coloring(output_Variables.Energy_Orthonormal_Transformation, scale_index, Selected_Index);
     }
 }
示例#5
0
 private void MassScalePlot_MouseDown(object sender, OxyMouseDownEventArgs e)
 {
     EnergyScalePlot_MouseDown_Base(MassScale_Plot, e);
     // Eigen Vectors
     PointsPlot_Wiring.PointsPlot_Coloring(Selected_Index);
 }