Example #1
0
            public static TdfDoubleVal Create(string Label, DoubleVal v)
            {
                TdfDoubleVal res = new TdfDoubleVal();

                res.Set(Label, 8);
                res.Value = v;
                return(res);
            }
Example #2
0
        public static TdfDoubleVal ReadTdfDoubleVal(Tdf head, Stream s)
        {
            TdfDoubleVal res = new TdfDoubleVal();

            res.Label = head.Label;
            res.Tag   = head.Tag;
            res.Type  = head.Type;
            res.Value = ReadDoubleVal(s);
            return(res);
        }