Official websites use .gov
A .gov website belongs to an official government organization in the United States.

Secure .gov websites use HTTPS
A lock ( ) or https:// means you’ve safely connected to the .gov website. Share sensitive information only on official, secure websites.

Isis 3 Programmer Reference
IsisIlluminator.h
1#ifndef IsisIlluminator_h
2#define IsisIlluminator_h
7
8/* SPDX-License-Identifier: CC0-1.0 */
9#include "SensorUtilities.h"
10
11namespace Isis {
12 class SpicePosition;
13
17 class IsisIlluminator : SensorUtilities::Illuminator {
18 public:
20
21 SensorUtilities::Vec position(double time);
22 SensorUtilities::Vec velocity(double time);
23 private:
24 SpicePosition* m_pos;
25 };
26};
27
28#endif
IsisIlluminator(SpicePosition *pos)
Create an IsisIlluminator that wraps a SpicePosition.
SensorUtilities::Vec position(double time)
Get the position in meters at a given time.
SensorUtilities::Vec velocity(double time)
Get the velocity in meters at a given time.
Obtain SPICE position information for a body.
This is free and unencumbered software released into the public domain.
Definition Apollo.h:16