Nevron .NET Vision
Nevron.GraphicsCore Namespace / NCubicBezier Structure / SplitAtTime Method


In This Topic
    SplitAtTime Method (NCubicBezier)
    In This Topic
    Splits a bezier curve at the specified time (in the [0:1] range) and returns the two resulting segments.
    Syntax
    'Declaration
     
    
    Public Sub SplitAtTime( _
       ByVal t As System.Double, _
       ByRef first As NCubicBezier, _
       ByRef second As NCubicBezier _
    ) 
    'Usage
     
    
    Dim instance As NCubicBezier
    Dim t As System.Double
    Dim first As NCubicBezier
    Dim second As NCubicBezier
     
    instance.SplitAtTime(t, first, second)
    public void SplitAtTime( 
       System.double t,
       out NCubicBezier first,
       out NCubicBezier second
    )

    Parameters

    t
    first
    second
    Requirements

    Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

    See Also