DXFReaderNETControlPolarArrayOfEntities Method
|
Creates copies of entities arranged in a regularly spaced circular pattern.
Namespace:
DXFReaderNET
Assembly:
DXFReaderNET (in DXFReaderNET.dll) Version: 20.10.54
Syntax public List<EntityObject> PolarArrayOfEntities(
IEnumerable<EntityObject> Entities,
Vector2 Center,
int Items = 4
)
Public Function PolarArrayOfEntities (
Entities As IEnumerable(Of EntityObject),
Center As Vector2,
Optional Items As Integer = 4
) As List(Of EntityObject)
public:
List<EntityObject^>^ PolarArrayOfEntities(
IEnumerable<EntityObject^>^ Entities,
Vector2 Center,
int Items = 4
)
member PolarArrayOfEntities :
Entities : IEnumerable<EntityObject> *
Center : Vector2 *
?Items : int
(* Defaults:
let _Items = defaultArg Items 4
*)
-> List<EntityObject>
METHOD PolarArrayOfEntities(
Entities AS IEnumerable<EntityObject>,
Center AS Vector2,
Items AS LONG := 4
) AS List<EntityObject>
Parameters
- Entities
- Type: System.Collections.GenericIEnumerableEntityObject
The entities to copy - Center
- Type: DXFReaderNETVector2
The center of the circle. - Items (Optional)
- Type: SystemInt32
The number of items.
Return Value
Type:
ListEntityObjectA list of the entites of the array.
See Also