Home › Forums › Software Development › Variable Eye Position Data along z-axis › Reply To: Variable Eye Position Data along z-axis
21/12/2019 at 12:01 #12520
Participant
Hi
I am using the Core SDK. And to obtain the above data, I have used the EyePositionStream. The following piece of code would help clarify the air better:
.
.
.
var eyePoseStream = host.Streams.CreateEyePositionStream();
eyePoseStream.Next += (o,eyeData) => {
Console.WriteLine(“{0} {1} {2} {3} {4}”, eyeData.Data.EngineTimestamp, eyeData.Data.HasLeftEyePosition, eyeData.Data.LeftEye.Z, eyeData.Data.HasRightEyePosition, eyeData.Data.LeftEye.Z);
};
.
.
.
Can you please confirm when will the Core SDK be discontinued (just a tentative timeline)?