SWFProcessing.SWFModeller.Characters.Shapes.IO.ShapeParser.ReadMorphLineStyle C# (CSharp) Method

ReadMorphLineStyle() private method

private ReadMorphLineStyle ( SWFDataTypeReader shapeReader ) : MorphLineStyle
shapeReader SWFDataTypeReader
return SWFProcessing.SWFModeller.Characters.Shapes.Parts.MorphLineStyle
        private MorphLineStyle ReadMorphLineStyle(SWFDataTypeReader shapeReader)
        {
            return new MorphLineStyle()
            {
                StartWidth = shapeReader.ReadUI16(),
                EndWidth = shapeReader.ReadUI16(),
                StartColour = shapeReader.ReadRGBA(),
                EndColour = shapeReader.ReadRGBA()
            };
        }