Interface IIdeaElement1D
- Namespace
- IdeaStatiCa.BimApi
- Assembly
- IdeaStatiCa.BimApi.dll
An element is a part of a member. Every member is comprised of one or more elements. It's geometry is defined by a Segment that can be either a line or an arc. It must specify cross-sections at both ends.
public interface IIdeaElement1D : IIdeaObjectWithResults, IIdeaObjectImplements
Properties
EndCrossSection
Cross-section at the and of the element.
IIdeaCrossSection EndCrossSection { get; }Property Value
RotationRx
Rotation of the element around the x-axis of the Segment's LCS.
double RotationRx { get; }Property Value
Segment
Returns the segment object that should implement either IIdeaLineSegment3D or IdeaStatiCa.BimApi.IIdeaArcSegment3D. Must not return null.
Hint: use is-operator to determine the segment type.
IIdeaSegment3D Segment { get; }Property Value
StartCrossSection
Cross-section at the start of the element.
IIdeaCrossSection StartCrossSection { get; }