summary refs log tree commit diff stats
path: root/tests/manyloc/named_argument_bug/tri_engine/math/circle.nim
blob: b95cfa379090a33005e4ce1b9d56c2787e4ffcc3 (plain) (blame)
1
2
3
4
5
6
7
8
9
import
  ../config,
  vec

type
  TCircle* = tuple[p: TV2[TR], r: TR]

converter toCircle*(o: TR): TCircle =
  (newV2(), o)