Constellation#
- class ansys.stk.core.stkobjects.Constellation#
Bases:
ISTKObject
,ILifetimeInformation
Class represents the STK Constellation.
Overview#
Get the collection of objects in the chain. |
|
Get the constellationβs constraints. |
|
Constellationβs 2D graphics settings. |
|
Constellationβs routing settings. |
Examples#
Define a constellation
# STKObjectRoot root: STK Object Model Root
# Satellite satellite: Satellite object
constellation = root.current_scenario.children.new(STKObjectType.CONSTELLATION, "MyConstellation")
constellation.objects.add_object(satellite)
constellation.objects.add("*/Facility/MyFacility")
Import detail#
from ansys.stk.core.stkobjects import Constellation
Property detail#
- property Constellation.objects: ObjectLinkCollection#
Get the collection of objects in the chain.
- property Constellation.constraints: ConstellationConstraints#
Get the constellationβs constraints.
- property Constellation.graphics: ConstellationGraphics#
Constellationβs 2D graphics settings.
- property Constellation.routing: ConstellationRouting#
Constellationβs routing settings.