SmoothPath_Gauss


Smooths a path by averaging its characteristic points within a kernel using gaussian-weighted average.

Syntax

C++
C#
Python
 
def SmoothPath_Gauss(
	inPath: Path,
	outPath: Path,
	/,
	*,
	inStdDev: float = 0.6,
	inKernelRelativeSize: float = 3.0
)
-> None

Parameters

Name Type Range Default Description
Input value inPath Path Input path
Input value inStdDev float 0.0 - 0.6 Smoothing standard deviation
Input value inKernelRelativeSize float 0.0 - 3.0 A multiple of the standard deviation determining the size of the kernel
Output value outPath Path Output path