Extrude a geometry along a specified line, using the Zs on the two ends of the line to set Zs on the top and bottom.
[Visual Basic .NET] Public Function ExtrudeAlongLine ( _ ByVal extrusionLine As ILine, _ ByVal baseGeom As IGeometry _ ) As IGeometry
[C#] public IGeometry ExtrudeAlongLine ( ILine extrusionLine, IGeometry baseGeom );
[C++]
HRESULT ExtrudeAlongLine(
ILine* extrusionLine,
IGeometry* baseGeom,
IGeometry** extrudedGeom
);
[C++]Parameters
extrusionLineextrusionLine is a parameter of type ILine
baseGeombaseGeom is a parameter of type IGeometry
extrudedGeom [out, retval]extrudedGeom is a parameter of type IGeometry
Product Availability
Description
Creates a MultiPatch or Polyline from a base geometry by extruding the base geometry along an axis defined by the input Line. The base Z value of the geometry is uniformly set to the Z value of the Along Line's FromPoint and top Z value is uniformly set to the Z value of the Along Line's ToPoint. The top geometry is also shifted in the X and Y directions by an offset defined by the X and Y change of the Along Line between From and To Points. The resulting extrusion is always parallel to the XY-plane on both the base and top. The input line should be ZAware and ZSimple.
Remarks
All non-linear segments are treated as linear segments when extrusion is performed. Only Polylines, Polygons, Envelopes, Points, and Multipoints are allowed as input geometries. Polylines, Polygons, and Envelopes will output MultiPatches while Points and Multipoints will output Polylines.
See Also
IExtrude Interface | IExtrude.ExtrudeBetween Method | IExtrude.ExtrudeAbsolute Method | IConstructMultiPatch.ConstructExtrudeAlongLine Method | IConstructMultiPatch.ConstructExtrudeRelative Method | IConstructMultiPatch.ConstructExtrude Method | IExtrude.ExtrudeFromTo Method | IExtrude.ExtrudeRelative Method | IConstructMultiPatch.ConstructExtrudeFromTo Method | IConstructMultiPatch.ConstructExtrudeAbsolute Method | IExtrude.Extrude Method | IConstructMultiPatch Interface | IExtrude Interface | IConstructMultiPatch.ConstructExtrudeBetween Method | IExtrude.ExtrudeAlongLine Method | IGlobeHeightProperties.ExtrusionExpressionString Property