DicomObjects.NET10 Documentation
DicomObjects Namespace / Vector3D Class / DotProduct Method / DotProduct(Vector3D,SKPoint3) Method



In This Topic
    DotProduct(Vector3D,SKPoint3) Method
    In This Topic
    Calculates the Dot product of Vector and Points
    Syntax
    'Declaration
     
    
    Public Overloads Shared Function DotProduct( _
       ByVal v1 As Vector3D, _
       ByVal p As SkiaSharp.SKPoint3 _
    ) As Double
    'Usage
     
    
    Dim v1 As Vector3D
    Dim p As SkiaSharp.SKPoint3
    Dim value As Double
     
    value = Vector3D.DotProduct(v1, p)
    public static double DotProduct( 
       Vector3D v1,
       SkiaSharp.SKPoint3 p
    )
    public:
    static double DotProduct( 
       Vector3D^ v1,
       SkiaSharp.SKPoint3 p
    ) 

    Parameters

    v1
    p

    Return Value

    Result of Dot multiplication
    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