Welcome to WuJiGu Developer Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
750 views
in Technique[技术] by (71.8m points)

uwp - How can I retrieve timestamp data of each points from InkModel of WILL SDK for Ink?

I want to get the timestamp of each point from InkModel of WILL SDK for Ink. I see in that class :

public class InkModel{
...
public SensorDataRepository SensorData { get; }
...
}

public class SensorDataRepository : IEnumerable<SensorData>, IEnumerable
{
...
public IEnumerator<SensorData> GetEnumerator();
...
}

But in SensorData class, there's no public function or property to get this data.

public class SensorData
{
    public SensorData(Identifier id, Identifier inputContextId, InkState state);
    public Identifier Id { get; }
    public Identifier InputContextID { get; }
    public long Timestamp { get; }
    public void AddData(SensorChannel sensorChannel, List<int> values);
    public void AddData(SensorChannel sensorChannel, List<float> values);
    public void AddTimestampData(SensorChannel sensorChannel, List<long> values);
}

Do you guys who working with WILL SDK know how to get this timing data?


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)
等待大神答复

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to WuJiGu Developer Q&A Community for programmer and developer-Open, Learning and Share
...