public IfcIndexedColourMap(IfcTessellatedFaceSet mappedTo, IfcNormalisedRatioMeasure opacity, IfcColourRgbList colours, List <IfcPositiveInteger> colourIndex) : base() { MappedTo = mappedTo; Opacity = opacity; Colours = colours; ColourIndex = colourIndex; }
public IfcIndexedTextureMap(List <IfcSurfaceTexture> maps, IfcTessellatedFaceSet mappedTo, IfcTextureVertexList texCoords) : base(maps) { MappedTo = mappedTo; TexCoords = texCoords; }
public IfcBooleanOperand(IfcTessellatedFaceSet choice) { this.choice = choice; }
/// <summary> /// Construct a IfcIndexedColourMap with all required attributes. /// </summary> public IfcIndexedColourMap(IfcTessellatedFaceSet mappedTo, IfcColourRgbList colours, List <IfcPositiveInteger> colourIndex) : base() { MappedTo = mappedTo; Colours = colours; ColourIndex = colourIndex; }
public IfcIndexedTriangleTextureMap(List <IfcSurfaceTexture> maps, IfcTessellatedFaceSet mappedTo, IfcTextureVertexList texCoords, List <List <IfcPositiveInteger> > texCoordIndex) : base(maps, mappedTo, texCoords) { TexCoordIndex = texCoordIndex; }