最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

matrix - I am working on 2D rendering in Avalonia C# - Stack Overflow

programmeradmin1浏览0评论

I am working on 2D rendering in Avalonia and have drawn lines, circles, and other entities using the DrawingContext in the control's Render override method. I am using the Matrix class for scaling and Y-axis translation.

I can select a specific entity, such as a line or circle, without using the matrix transformation. However, when applying the matrix, the selection does not work correctly because the points do not match.

    public override void Render (DrawingContext context) {
   base.Render (context);

   
  
   // 2D Render Matrix
   this.renderMatrix = _2DView.GetMatrix ();

   // Draw Scene
   using (context.PushTransform (this.renderMatrix)) {
      if (this.Entity == null) return;
      foreach (var entity in this.Entity!) {
         defPen = entity.IsSelected ? new (Brushes.Red, 2) : new (Brushes.White, 1);
         EntityDrawerVM.DrawEntity (context, entity, this.renderMatrix, defPen);
      }
   }

}



  Convert screentoworldpoint:
 private Avalonia.Point ScreenToWorld (Avalonia.Point p) {
    return new Avalonia.Point (
               (p.X * this.renderMatrix.M11) + (p.Y * this.renderMatrix.M21) + this.renderMatrix.M31,
               (p.X * this.renderMatrix.M12) + (p.Y * this.renderMatrix.M22) + this.renderMatrix.M32);
 }
发布评论

评论列表(0)

  1. 暂无评论