skip navigation
  • Product Bundles

    DevCraft

    All Telerik .NET tools and Kendo UI JavaScript components in one package. Now enhanced with:

    • AI Coding Assistants
    • Embedded Reporting
    • Document Processing Libraries
    • SSO Account Sign-in

    Web

    Kendo UI UI for Angular UI for Vue UI for jQuery KendoReact UI for Blazor UI for ASP.NET Core UI for ASP.NET MVC UI for ASP.NET AJAX

    Mobile

    UI for .NET MAUI

    Document Management

    Telerik Document Processing

    Desktop

    UI for .NET MAUI UI for WinUI UI for WinForms UI for WPF

    Reporting

    Telerik Reporting Telerik Report Server

    Testing & Mocking

    Test Studio Telerik JustMock

    CMS

    Sitefinity

    AI Productivity Tools

    AI Coding Assistants

    UI/UX Tools

    ThemeBuilder Design System Kit Templates and Building Blocks

    Debugging

    Fiddler Fiddler Everywhere Fiddler Classic Fiddler Everywhere Reporter FiddlerCore

    Free Tools

    KendoReact Free VB.NET to C# Converter Testing Framework
    View all products
  • Overview
  • Demos
    • What's New
    • Roadmap
    • Release History
  • Support and Learning

    • Support and Learning Hub
    • First Steps
    • Docs
    • Demos
    • Virtual Classroom
    • Forums
    • Videos
    • Blogs
    • Accessibility
    • Submit a Ticket

    Productivity and Design Tools

    • Visual Studio Extensions
    • Visual Studio Templates
    • Embedded Reporting
  • Pricing
  • Shopping cart
    • Account Overview
    • Your Licenses
    • Downloads
    • Support Center
    • Forum Profile
    • Payment Methods
    • Edit Profile
    • Log out
  • Login
  • Contact Us
  • Try now

Class Spline3DPrimitive

Primitive that renders segment of a spline curve.

Inheritance
System.Object
DynamicUIElement3D
Spline3DPrimitive
Inherited Members
DynamicUIElement3D.BackMaterialProperty
DynamicUIElement3D.MaterialProperty
DynamicUIElement3D.ModelProperty
DynamicUIElement3D.CreateRectangleModel(Point3D, Point3D, Point3D, Point3D, Material, Material)
DynamicUIElement3D.CreateTriangleMesh(Point3D, Point3D, Point3D)
DynamicUIElement3D.CreateTriangleModel(Point3D, Point3D, Point3D, Material, Material)
DynamicUIElement3D.DegreesToRadians(Double)
DynamicUIElement3D.ModelPropertyChanged(DependencyObject, DependencyPropertyChangedEventArgs)
DynamicUIElement3D.RadiansToDegrees(Double)
DynamicUIElement3D.VisualPropertyChanged(DependencyObject, DependencyPropertyChangedEventArgs)
DynamicUIElement3D.OnUpdateModel()
DynamicUIElement3D.ClearModel()
DynamicUIElement3D.BackMaterial
DynamicUIElement3D.Material
DynamicUIElement3D.Model
Namespace: Telerik.Windows.Controls.Charting
Assembly: Telerik.Windows.Controls.Charting.dll

Syntax

public class Spline3DPrimitive : DynamicUIElement3D

Constructors

Spline3DPrimitive()

Initializes a new instance of the Spline3DPrimitive class.

Declaration
public Spline3DPrimitive()

Fields

DepthProperty

Identifies the Depth dependency property.

Declaration
public static readonly DependencyProperty DepthProperty
Field Value
System.Windows.DependencyProperty

IsFirstProperty

Identifies the IsFirst dependency property.

Declaration
public static readonly DependencyProperty IsFirstProperty
Field Value
System.Windows.DependencyProperty

IsLastProperty

Identifies the IsLast dependency property.

Declaration
public static readonly DependencyProperty IsLastProperty
Field Value
System.Windows.DependencyProperty

P0Property

Identifies the P0 dependency property.

Declaration
public static readonly DependencyProperty P0Property
Field Value
System.Windows.DependencyProperty

P1Property

Identifies the P1 dependency property.

Declaration
public static readonly DependencyProperty P1Property
Field Value
System.Windows.DependencyProperty

P2Property

Identifies the P2 dependency property.

Declaration
public static readonly DependencyProperty P2Property
Field Value
System.Windows.DependencyProperty

P3Property

Identifies the P3 dependency property.

Declaration
public static readonly DependencyProperty P3Property
Field Value
System.Windows.DependencyProperty

ThetaProperty

Identifies the Theta dependency property.

Declaration
public static readonly DependencyProperty ThetaProperty
Field Value
System.Windows.DependencyProperty

ThicknessProperty

Identifies the Thickness dependency property.

Declaration
public static readonly DependencyProperty ThicknessProperty
Field Value
System.Windows.DependencyProperty

WidthProperty

Identifies the Width dependency property.

Declaration
public static readonly DependencyProperty WidthProperty
Field Value
System.Windows.DependencyProperty

ZFromProperty

Identifies the ZFrom dependency property.

Declaration
public static readonly DependencyProperty ZFromProperty
Field Value
System.Windows.DependencyProperty

ZToProperty

Identifies the ZTo dependency property.

Declaration
public static readonly DependencyProperty ZToProperty
Field Value
System.Windows.DependencyProperty

Properties

Depth

Gets or sets the depth of the spline.

Declaration
public double Depth { get; set; }
Property Value
System.Double

The depth.

Index

Gets the current item index.

Declaration
protected int Index { get; }
Property Value
System.Int32

The index.

IsFirst

Gets or sets a value indicating whether this segment of the spline is first.

Declaration
public bool IsFirst { get; set; }
Property Value
System.Boolean

Returns true if this spline segment is first; otherwise, false.

IsLast

Gets or sets a value indicating whether this segment of the spline is last.

Declaration
public bool IsLast { get; set; }
Property Value
System.Boolean

Returns true if this spline segment is last; otherwise, false.

P0

Gets or sets the spline's first control point.

Declaration
public double P0 { get; set; }
Property Value
System.Double

The control point.

P1

Gets or sets the spline's second control point.

Declaration
public double P1 { get; set; }
Property Value
System.Double

The control point.

P2

Gets or sets the spline's third control point.

Declaration
public double P2 { get; set; }
Property Value
System.Double

The control point.

P3

Gets or sets the spline's fourth control point.

Declaration
public double P3 { get; set; }
Property Value
System.Double

The control point.

SeriesItemsCount

Gets the series items count.

Declaration
protected int SeriesItemsCount { get; }
Property Value
System.Int32

The series items count.

Theta

Gets or sets the tessellation of the line.

Declaration
public int Theta { get; set; }
Property Value
System.Int32

The theta.

Thickness

Gets or sets the thickness of the spline.

Declaration
public double Thickness { get; set; }
Property Value
System.Double

The thickness.

Width

Gets or sets the width of the spline.

Declaration
public double Width { get; set; }
Property Value
System.Double

The width.

ZFrom

Gets or sets the Z position of the front spline plane.

Declaration
public double ZFrom { get; set; }
Property Value
System.Double

The Z position.

ZTo

Gets or sets the Z position of the back spline plane.

Declaration
public double ZTo { get; set; }
Property Value
System.Double

The Z position.

Methods

CreateElementModel()

Creates the final element 3D model.

Declaration
protected override Model3D CreateElementModel()
Returns
System.Windows.Media.Media3D.Model3D

The final 3D model of the element.

Overrides
DynamicUIElement3D.CreateElementModel()

Extension Methods

CollectionExtensions.ToEnumerable<T>(T)
EnumerableExtensions.ToEnumerable<T>(T)
Getting Started
  • Install Now
  • Demos
  • SDK Samples Browser
  • Sample Applications
Support Resources
  • Code Library
  • Knowledge Base
  • MVVM Support
  • Videos
  • GitHub SDK Repository
Community
  • Forums
  • Blogs
  • XAML Feedback Portal
  • Document Processing Feedback Portal

Copyright © 2018 Progress Software Corporation and/or its subsidiaries or affiliates.
All Rights Reserved.

Progress, Telerik, and certain product names used herein are trademarks or registered trademarks of Progress Software Corporation and/or one of its subsidiaries or affiliates in the U.S. and/or other countries. See Trademarks for appropriate markings.