This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* | |
* | |
* @param {SVGSVGElement} svg: root svg element | |
* @param {number} x | |
* @param {number} y | |
* @param {SVGMatrix} ctm: element.getScreemCTM() | |
* @returns {SVGPoint} real position in container | |
*/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[StructLayout(LayoutKind.Sequential)] | |
public struct FixedArray8<T> | |
where T : unmanaged | |
{ | |
public T Value0; | |
public T Value1; | |
public T Value2; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public static class GrainExtensions | |
{ | |
/// <summary> | |
/// Get string Id | |
/// </summary> | |
/// <param name="grain"></param> | |
/// <returns></returns> | |
public static string GetId(this IGrainWithStringKey grain) => grain.GetPrimaryKeyString(); | |
/// <summary> |
OlderNewer