@@ -20,8 +20,8 @@ class D : Display.IDisplay<Fonts, Glyph> {
2020 public void Draw ( IGraphicsContext < Fonts , Glyph > context ) => throw new NotImplementedException ( ) ;
2121 public void SetTextColorRecursive ( Color ? textColor ) => throw new NotImplementedException ( ) ;
2222 }
23- class DEditorKeyboard : Editor . MathKeyboard < Fonts , Glyph > {
24- public DEditorKeyboard ( ) : base ( TypesettingContext . Instance , new Fonts ( Enumerable . Empty < Typography . OpenFont . Typeface > ( ) , 0.0f ) ) =>
23+ class DKeyboard : Editor . MathKeyboard < Fonts , Glyph > {
24+ public DKeyboard ( ) : base ( TypesettingContext . Instance , new Fonts ( Enumerable . Empty < Typography . OpenFont . Typeface > ( ) , 0.0f ) ) =>
2525 Display = new Display . Displays . ListDisplay < Fonts , Glyph > ( new [ ] { new D ( ) } ) ;
2626 }
2727 class DRenderingMath : SkiaSharp . MathPainter {
@@ -39,13 +39,13 @@ public DRenderingKeyboard() =>
3939 Display = new Display . Displays . ListDisplay < Fonts , Glyph > ( new [ ] { new D ( ) } ) ;
4040 }
4141 /// <summary>
42- /// CSharpMath and CSharpMath.Editor use the mathematical coordinate system,
42+ /// CSharpMath uses the mathematical coordinate system,
4343 /// i.e. the rectangle position is at the bottom-left.
4444 /// </summary>
4545 [ Fact ]
4646 public void CoreMeasure_YIsNegDescent ( ) {
4747 Assert . Equal ( new RectangleF ( 0 , - 3 , 10 , 15 ) , new D ( ) . DisplayBounds ( ) ) ;
48- Assert . Equal ( new RectangleF ( 0 , - 3 , 10 , 15 ) , new DEditorKeyboard ( ) . Measure ) ;
48+ Assert . Equal ( new RectangleF ( 0 , - 3 , 10 , 15 ) , new DKeyboard ( ) . Measure ) ;
4949 }
5050 /// <summary>
5151 /// CSharpMath.Rendering and descendants use the graphical coordinate system,
0 commit comments