예제 #1
0
파일: DxfHeader.cs 프로젝트: jcambert/WeETL
 public void SetValue(string key, DxfHeaderValue value) => Codes[key] = value;
예제 #2
0
 internal static bool IsVector3(this DxfHeaderValue header) =>
 header.GroupCodes.Count == 3 && header.GroupCodes.TrueForAll(c => c >= 10 && c <= 37);