コード例 #1
0
ファイル: Pattern.cs プロジェクト: raidenyn/Gauss2DynVis
        protected Geometry GetGeom(string line, TextReader file)
        {
            var match = OrientationNameRegex.Match(line);

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

                return Geometry.CreateFormText(file);
            }

            return null;
        }