LinearGradientBrush.SetSigmaBellShape メソッド
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
ベルの形をした曲線に基づいてグラデーションのフォールオフを作成します。
オーバーロード
SetSigmaBellShape(Single) |
ベルの形をした曲線に基づいてグラデーションのフォールオフを作成します。 |
SetSigmaBellShape(Single, Single) |
ベルの形をした曲線に基づいてグラデーションのフォールオフを作成します。 |
SetSigmaBellShape(Single)
ベルの形をした曲線に基づいてグラデーションのフォールオフを作成します。
public:
void SetSigmaBellShape(float focus);
public void SetSigmaBellShape (float focus);
member this.SetSigmaBellShape : single -> unit
Public Sub SetSigmaBellShape (focus As Single)
パラメーター
- focus
- Single
グラデーションの中心 (開始色と終了色が等しくブレンドされるポイント) を指定する 0 ~ 1 の値。
例
例については、SetSigmaBellShape.
を参照してください。
注釈
このメソッドは、グラデーションが終了色のみで構成されるポイントである focus
を指定します。
focus
パラメータは、グラデーション線に沿った距離の比率として位置を表します。 グラデーションは、ベル曲線の形状 (正規分布) に基づいて、どちらの側にも開始色に落ちます。
適用対象
SetSigmaBellShape(Single, Single)
ベルの形をした曲線に基づいてグラデーションのフォールオフを作成します。
public:
void SetSigmaBellShape(float focus, float scale);
public void SetSigmaBellShape (float focus, float scale);
member this.SetSigmaBellShape : single * single -> unit
Public Sub SetSigmaBellShape (focus As Single, scale As Single)
パラメーター
- focus
- Single
グラデーションの中心 (グラデーションが終了色のみで構成されるポイント) を指定する 0 から 1 までの値。
- scale
- Single
focus
からの色の減衰速度を指定する 0 ~ 1 の値。
例
次のコード例は、Windows フォームで使用できるように設計されており、OnPaint イベント オブジェクトである PaintEventArgse
が必要です。 このコードは、次のアクションを実行します。
新しい LinearGradientBrushを作成します。
このブラシを使用して、色の線状の左から右に遷移する楕円を画面に描画します。
LinearGradientBrush を変換して、中心にピークがあるベル形状の曲線を作成します。
ベルの形をしたブラシを使用して、画面に 2 つ目の楕円を描画します。
下の楕円のグラデーションが青から赤に遷移し、青色に戻ります。
private:
void SetSigmaBellShapeExample( PaintEventArgs^ e )
{
// Create a LinearGradientBrush.
Rectangle myRect = Rectangle(20,20,200,100);
LinearGradientBrush^ myLGBrush = gcnew LinearGradientBrush( myRect,Color::Blue,Color::Red,0.0f,true );
// Draw an ellipse to the screen using the LinearGradientBrush.
e->Graphics->FillEllipse( myLGBrush, myRect );
// Create a bell-shaped brush with the peak at the
// center of the drawing area.
myLGBrush->SetSigmaBellShape( .5f, 1.0f );
// Use the bell- shaped brush to draw a second
// ellipse.
myRect.Y = 150;
e->Graphics->FillEllipse( myLGBrush, myRect );
}
private void SetSigmaBellShapeExample(PaintEventArgs e)
{
// Create a LinearGradientBrush.
Rectangle myRect = new Rectangle(20, 20, 200, 100);
LinearGradientBrush myLGBrush = new LinearGradientBrush(
myRect, Color.Blue, Color.Red, 0.0f, true);
// Draw an ellipse to the screen using the LinearGradientBrush.
e.Graphics.FillEllipse(myLGBrush, myRect);
// Create a bell-shaped brush with the peak at the
// center of the drawing area.
myLGBrush.SetSigmaBellShape(.5f, 1.0f);
// Use the bell- shaped brush to draw a second
// ellipse.
myRect.Y = 150;
e.Graphics.FillEllipse(myLGBrush, myRect);
}
Public Sub SetSigmaBellShapeExample(ByVal e As PaintEventArgs)
' Create a LinearGradientBrush.
Dim myRect As New Rectangle(20, 20, 200, 100)
Dim myLGBrush As New LinearGradientBrush(myRect, Color.Blue, _
Color.Red, 0.0F, True)
' Draw an ellipse to the screen using the LinearGradientBrush.
e.Graphics.FillEllipse(myLGBrush, myRect)
' Create a triangular shaped brush with the peak at the center
' of the drawing area.
myLGBrush.SetSigmaBellShape(0.5F, 1.0F)
' Use the triangular brush to draw a second ellipse.
myRect.Y = 150
e.Graphics.FillEllipse(myLGBrush, myRect)
End Sub
注釈
このメソッドは、グラデーションが終了色のみで構成されるポイントである focus
を指定します。
focus
パラメータは、グラデーション線に沿った距離の比率として位置を表します。 グラデーションは、ベル曲線の形状 (正規分布) に基づいて、どちらの側にも開始色に落ちます。
適用対象
.NET