SwfDotNet.IO.Tags.Types.CXForm.GetSizeOf C# (CSharp) Method

GetSizeOf() public method

Gets the size of.
public GetSizeOf ( ) : int
return int
        public int GetSizeOf()
        {
            uint res = 6;
            uint nBits = GetNumBits();
            if (hasMultTerms)
                res += nBits * 3;
            if (hasAddTerms)
                res += nBits * 3;
            return (int)Math.Ceiling((double)res / 8.0);
        }