TimePoint

public struct TimePoint : XMLRepresentable

Undocumented

  • Specifies the possible interpolation modes of a time point.

    Declaration

    Swift

    public enum Interpolation : String, Codable
  • The time of the time point.

    Declaration

    Swift

    public var time: CMTime
  • The value of the time point.

    Declaration

    Swift

    public var value: CMTime
  • The interpolation mode of the time point.

    Declaration

    Swift

    public var interpolation: Interpolation { get set }
  • The in time of the time point.

    Declaration

    Swift

    public var inTime: CMTime?
  • The out time of the time point.

    Declaration

    Swift

    public var outTime: CMTime?
  • Initializes a new time point.

    Declaration

    Swift

    public init(time: CMTime, value: CMTime)

    Parameters

    time

    The time of the time point.

    value

    The value of the time point.