コード例 #1
0
 public StrokeStyleW(sStrokeStyle strokeStyle, float strokeWidth)
 {
     this.strokeStyle = strokeStyle;
     this.strokeWidth = strokeWidth;
 }
コード例 #2
0
 /// <summary>Construct the structure</summary>
 public sStrokeInfo(sStrokeStyle style, float width)
 {
     this.style = style;
     this.width = width;
 }
コード例 #3
0
 public StrokeStyle(sStrokeStyle ss)
 {
     strokeStyle = ss;
 }
コード例 #4
0
ファイル: Direct2dDevice.cs プロジェクト: zeta1999/Vrmac
 iStrokeStyle iDrawDevice.createStrokeStyle(sStrokeStyle style)
 {
     return(d2dDevice.createStrokeStyle(ref style));
 }