Beispiel #1
0
        public void Initialize(UIElement element)
        {
            localRotation     = default;
            localScale        = default;
            localPosition     = default;
            scale             = default;
            screenPosition    = default;
            pivot             = default;
            actualSize        = default;
            allocatedSize     = default;
            rotation          = default;
            border            = default;
            padding           = default;
            margin            = default;
            localMatrix       = default;
            pivotOffset       = default;
            allocatedPosition = default;
            alignedPosition   = default;
            layoutParent      = default;
            orientedBounds    = default;
            axisAlignedBounds = default;
            clipper           = default;
            isCulled          = default;
            rebuildGeometry   = default;

            this.element = element;
            this.matrix  = SVGXMatrix.identity;
        }
Beispiel #2
0
 public LayoutResult()
 {
     this.matrix = SVGXMatrix.identity;
 }
Beispiel #3
0
 internal LayoutResult(UIElement element)
 {
     this.element = element;
     this.matrix  = SVGXMatrix.identity;
 }