Beispiel #1
0
 private void OnSpaceDataChanged(object caller, SpaceChangedArgs e)
 {
     tensorProperties = e.tensorProperties;
     SetNewTitle();
     View.spacetimeDescription.text = e.tensorProperties.Description;
     View.UpdateParameters(e.tensorProperties.Parameters);
 }
 private void OnSpaceDataChanged(object caller, SpaceChangedArgs e)
 {
     tensorProperties = e.tensorProperties;
     if (HasTensorAMetric())
     {
         FetchAndShowMetric();
     }
     else
     {
         HideMetricAndLoader();
     }
 }
Beispiel #3
0
 public SymbolIndexToLaTeXConverter(TensorProperties props) : base(props)
 {
 }
Beispiel #4
0
 static public string Convert(TensorProperties props)
 {
     return(new SymbolIndexToLaTeXConverter(props).GetLaTeX());
 }
 public static void DecorateData(TensorProperties props)
 {
     properties = props;
     GetAllLaTeXCharactersToDecorate().ForEach(DecorateLaTeXCharacter);
 }
Beispiel #6
0
 public SpaceChangedArgs(TensorProperties tensorProperties)
 {
     this.tensorProperties = tensorProperties;
 }
Beispiel #7
0
 private async void OnSpaceVisualizedByCubeChanged(object caller, SpaceChangedArgs e)
 {
     properties = e.tensorProperties;
     await SetIndexTexture();
 }
Beispiel #8
0
 private void OnSpaceVisualizedByCubeChanged(object sender, SpaceChangedArgs e)
 {
     tensorProperties = e.tensorProperties;
     FetchAndShowSymbol();
 }
 public IndexToLaTeXConverter(TensorProperties props)
 {
     properties = props;
 }