Lichtquelle - lagenbezogen | |
Light Source Positional |
NOTE Definition according to ISO 10303-46:
The light source positional entity is a subtype of light source. This entity has a light source position and attenuation coefficients. A positional light source affects a surface based on the surface's orientation and position.
NOTE Definition according to ISO/IEC 14772-1:1997:
The Point light node specifies a point light source at a 3D location in the local coordinate system. A point light source emits light equally in all directions; that is, it is omnidirectional. Point light nodes are specified in the local coordinate system and are affected by ancestor transformations.
Point light node's illumination falls off with distance as specified by three attenuation coefficients. The attenuation factor is1/max(attenuation[0] + attenuation[1] × r + attenuation[2] × r 2 , 1),where r is the distance from the light to the surface being illuminated. The default is no attenuation. An attenuation value of (0, 0, 0) is identical to (1, 0, 0). Attenuation values shall be greater than or equal to zero.
NOTE Corresponding ISO 10303 entity: light_source_positional. Please refer to ISO/IS 10303-46:1994, p. 32 for the final definition of the formal standard.
NOTE In addition to the attributes as defined in ISO10303-46 the additional property from ISO/IEC 14772-1:1997 (VRML) Radius and QuadricAttenuation are added to this subtype and the AmbientIntensity and Intensity are inherited from the supertype.
HISTORY New entity in IFC2x, renamed and enhanced in IFC2x2.
# | Attribute | Type | Cardinality | Description | C |
---|---|---|---|---|---|
5 | Position | IfcCartesianPoint | [1:1] | Definition from ISO/CD 10303-46:1992: The Cartesian point indicates the position of the light source. Definition from VRML97 - ISO/IEC 14772-1:1997: A Point light node illuminates geometry within radius of its location. | X |
6 | Radius | IfcPositiveLengthMeasure | [1:1] | The maximum distance from the light source for a surface still to be illuminated. Definition from VRML97 - ISO/IEC 14772-1:1997: A Point light node illuminates geometry within radius of its location. | X |
7 | ConstantAttenuation | IfcReal | [1:1] | Definition from ISO/CD 10303-46:1992: This real indicates the value of the attenuation in the lighting equation that is constant. | X |
8 | DistanceAttenuation | IfcReal | [1:1] | Definition from ISO/CD 10303-46:1992: This real indicates the value of the attenuation in the lighting equation that proportional to the distance from the light source. | X |
9 | QuadricAttenuation | IfcReal | [1:1] | This real indicates the value of the attenuation in the lighting equation that proportional to the square value of the distance from the light source. | X |
# | Attribute | Type | Cardinality | Description | C |
---|---|---|---|---|---|
IfcRepresentationItem | |||||
LayerAssignment | IfcPresentationLayerAssignment @AssignedItems | S[0:1] | Assignment of the representation item to a single or multiple layer(s). The LayerAssignments can override a LayerAssignments of the IfcRepresentation it is used within the list of Items. | X | |
StyledByItem | IfcStyledItem @Item | S[0:1] | Reference to the IfcStyledItem that provides presentation information to the representation, e.g. a curve style, including colour and thickness to a geometric curve. | X | |
IfcGeometricRepresentationItem | |||||
IfcLightSource | |||||
1 | Name | IfcLabel | [0:1] | The name given to the light source in presentation. | X |
2 | LightColour | IfcColourRgb | [1:1] | Definition from ISO/CD 10303-46:1992: Based on the current lighting model, the colour of the light to be used for shading. Definition from VRML97 - ISO/IEC 14772-1:1997: The color field specifies the spectral color properties of both the direct and ambient light emission as an RGB value. | X |
3 | AmbientIntensity | IfcNormalisedRatioMeasure | [0:1] | Definition from VRML97 - ISO/IEC 14772-1:1997: The ambientIntensity specifies the intensity of the ambient emission from the light. Light intensity may range from 0.0 (no light emission) to 1.0 (full intensity). | X |
4 | Intensity | IfcNormalisedRatioMeasure | [0:1] | Definition from VRML97 - ISO/IEC 14772-1:1997: The intensity field specifies the brightness of the direct emission from the ligth. Light intensity may range from 0.0 (no light emission) to 1.0 (full intensity). | X |
IfcLightSourcePositional | |||||
5 | Position | IfcCartesianPoint | [1:1] | Definition from ISO/CD 10303-46:1992: The Cartesian point indicates the position of the light source. Definition from VRML97 - ISO/IEC 14772-1:1997: A Point light node illuminates geometry within radius of its location. | X |
6 | Radius | IfcPositiveLengthMeasure | [1:1] | The maximum distance from the light source for a surface still to be illuminated. Definition from VRML97 - ISO/IEC 14772-1:1997: A Point light node illuminates geometry within radius of its location. | X |
7 | ConstantAttenuation | IfcReal | [1:1] | Definition from ISO/CD 10303-46:1992: This real indicates the value of the attenuation in the lighting equation that is constant. | X |
8 | DistanceAttenuation | IfcReal | [1:1] | Definition from ISO/CD 10303-46:1992: This real indicates the value of the attenuation in the lighting equation that proportional to the distance from the light source. | X |
9 | QuadricAttenuation | IfcReal | [1:1] | This real indicates the value of the attenuation in the lighting equation that proportional to the square value of the distance from the light source. | X |
<xs:element name="IfcLightSourcePositional" type="ifc:IfcLightSourcePositional" substitutionGroup="ifc:IfcLightSource" nillable="true"/>
<xs:complexType name="IfcLightSourcePositional">
<xs:complexContent>
<xs:extension base="ifc:IfcLightSource">
<xs:sequence>
<xs:element name="Position" type="ifc:IfcCartesianPoint" nillable="true"/>
</xs:sequence>
<xs:attribute name="Radius" type="ifc:IfcPositiveLengthMeasure" use="optional"/>
<xs:attribute name="ConstantAttenuation" type="ifc:IfcReal" use="optional"/>
<xs:attribute name="DistanceAttenuation" type="ifc:IfcReal" use="optional"/>
<xs:attribute name="QuadricAttenuation" type="ifc:IfcReal" use="optional"/>
</xs:extension>
</xs:complexContent>
</xs:complexType>
ENTITY IfcLightSourcePositional
SUPERTYPE OF(IfcLightSourceSpot)
SUBTYPE OF (IfcLightSource);
Position : IfcCartesianPoint;
Radius : IfcPositiveLengthMeasure;
ConstantAttenuation : IfcReal;
DistanceAttenuation : IfcReal;
QuadricAttenuation : IfcReal;
END_ENTITY;