Exemple #1
0
 private int FixFace(IIfcLoop bound)
 {
     if (bound is IIfcPolyLoop)
     {
         return(FixFace((IIfcPolyLoop)bound));
     }
     return(0);
 }
 private static void Report(IIfcLoop bound, TextHighliter sb)
 {
     if (bound is IIfcPolyLoop)
     {
         Report((IIfcPolyLoop)bound, sb);
     }
     else
     {
         sb.Append($"{bound.GetType().Name} not implemented in IIfcLoop.", Brushes.Red);
     }
 }