Plane3
through which to slide the mesh.The region of the mesh below the plane will be kept.
@param cap A value indicating whether holes introduced by the operationshould be capped.
Equivalent to successive calls to sliceStart()
and sliceEnd()
.
@throws IllegalStateException If the start buffer is not empty.
The sliced buffer's capacity will be this buffer's remaining()
, and its zero position will correspond to this buffer's current position. The new buffer's position will be 0, limit will be its capacity, and its mark is unset. The new buffer's readonly property and byte order are same as this buffer.
The new buffer shares content with this buffer, which means either buffer's change of content will be visible to the other. The two buffer's position, limit and mark are independent.
@return A sliced buffer that shares content with this buffer. The sliced buffer's capacity will be this buffer's remaining()
, and its zero position will correspond to this buffer's current position. The new buffer's position will be 0, limit will be its capacity, and its mark is unset. The new buffer's readonly property and byte order are same as this buffer.
The new buffer shares content with this buffer, which means either buffer's change of content will be visible to the other. The two buffer's position, limit and mark are independent.
@return A sliced buffer that shares content with this buffer. The sliced buffer's capacity will be this buffer's remaining()
, and its zero position will correspond to this buffer's current position. The new buffer's position will be 0, limit will be its capacity, and its mark is unset. The new buffer's readonly property and byte order are same as this buffer.
The new buffer shares content with this buffer, which means either buffer's change of content will be visible to the other. The two buffer's position, limit and mark are independent.
@return A sliced buffer that shares content with this buffer.The list is modifiable if and only if this TupleList is modifiable. Adding an element to a slice will create a tuple whose members in other columns are null. Removing an element from a slicer will remove a tuple. @param column Ordinal of the member in each tuple to project @return List of members @throws IllegalArgumentException if column is not less than arity
Buffer
whose content is a shared subsequence of this buffer's content. The content of the new buffer will start at this buffer's current position. Changes to this buffer's content will be visible in the new buffer, and vice versa; the two buffers' position, limit, and mark values will be independent.
The new buffer's position will be zero, its capacity and its limit will be the number of bytes remaining in this buffer, and its mark will be undefined. The new buffer will be direct if, and only if, this buffer is direct, and it will be read-only if, and only if, this buffer is read-only.
@return The newBuffer
|
|
|
|
|
|
|
|
|
|