Table of Contents

Class SourceTrajectory<T>

Namespace
AiDotNet.Interfaces
Assembly
AiDotNet.dll

A tracked trajectory of a sound source.

public class SourceTrajectory<T>

Type Parameters

T

The numeric type used for calculations.

Inheritance
SourceTrajectory<T>
Inherited Members

Properties

EndTime

Gets or sets the end time of this trajectory.

public double EndTime { get; set; }

Property Value

double

Points

Gets or sets the trajectory points over time.

public IReadOnlyList<TrajectoryPoint<T>> Points { get; set; }

Property Value

IReadOnlyList<TrajectoryPoint<T>>

SourceId

Gets or sets the source ID.

public int SourceId { get; set; }

Property Value

int

StartTime

Gets or sets the start time of this trajectory.

public double StartTime { get; set; }

Property Value

double