Example #1
0
        protected Geometry GetGeom(string line, TextReader file)
        {
            var match = OrientationNameRegex.Match(line);

            if (match.Success)
            {
                file.SkipLines(4);

                return Geometry.CreateFormText(file);
            }

            return null;
        }