Bézier(start, control1, control2, end, steps) Bézier(start, control1, control2, end, steps) BézierPatch(p00, p10, p20, p30, p01, p11, p21, p31, p02, p12, p22, p32, p03, p13, p23, p33, steps) Extrude(polygon, depth, includeBackFace, flatSideNormals) Extrude(polygons, depth, includeBackFace, flatSideNormals) Extrude(pieces, depth, smoothness, includeBackFace) pt(x, y, z, normalOverride) pt(x, y, z, befX, afX, befY, afY) Rotate(face, axisStart, axisEnd, angle) Rotate(faces, axisStart, axisEnd, angle) Rotate(faces, axisStart, axisEnd, angle) Rotate(faces, axisStart, axisEnd, angle) Rotate(faces, axisStart, axisEnd, angle) Rotate(vi, axisStart, axisEnd, angle) Rotate(face, axisStart, axisEnd, angle) Rotate(face, axisStart, axisEnd, angle) Rotate(face, axisStart, axisEnd, angle)
Legend Class Struct Enum Interface Delegate | Constructor Method Property Event Field |
| Extension method: IEnumerable<TResult> SelectManyConsecutivePairs<T, TResult>(this IEnumerable<T>, bool, Func<T, T, IEnumerable<TResult>>)- Declared in: RT.Modeling.Md
Declarationpublic static IEnumerable<TResult> SelectManyConsecutivePairs<T, TResult>(
this IEnumerable<T> source,
bool closed,
Func<T, T, IEnumerable<TResult>> selector
) Summary
Processes consecutive pairs of a collection into a new collection and concatenates all of the results. Generic type parametersT |
Type of elements in the input collection. | TResult |
Type of elements in the resulting collection. |
Parametersthis IEnumerable<T> | source |
Input elements to process. | bool | closed |
Specifies whether the last element is considered to connect back to the first element (closed loop). | Func<T, T, IEnumerable<TResult>> | selector |
Provides a function to process each pair of consecutive elements into a collection of results. |
Returns
The concatenated result collections. |