On Monday, 25 April 2022 at 08:54:52 UTC, Chris Katko wrote:
````D struct pair { float x,y; }alias sPair = Typedef!pair; // pair of xy in screen space coordinates alias vPair = Typedef!pair; // pair of xy in viewport space coordinates//etc How do you initialize a typedef'd struct?
``d vPair v1 = vPair(pair(1f, 2f)); ```