Main Content

delta

Create delta shape

Since R2021b

Description

Use delta object to create a delta shape on the X-Y plane.

Creation

Description

example

deltashape = delta creates a delta shape on the X-Y plane.

deltashape = delta(Name=Value) sets Properties using one or more name-value arguments. For example, delta(ReferencePoint=[1 1]) creates a delta shape with the reference point at [1 1]. Properties not specified retain their default values.

Properties

expand all

Name of the delta shape, specified as a character vector or string scalar.

Example: deltashape = delta(Name='deltaShape')

Data Types: char

Reference point of delta shape in Cartesian coordinates, specified as a two-element vector of nonnegative elements. Use the reference point to modify the shape relative to its initial position.

Example: deltashape = delta(ReferencePoint=[1 1])

Data Types: double

Outer radius of the delta, specified as a positive scalar in meters.

Example: shape = delta(OuterRadius=0.0024)

Data Types: double

Inner radius of the delta, specified as a nonnegative scalar in meters. This value truncates the delta from the tip.

Example: shape = delta(InnerRadius=0.3)

Data Types: double

Angel of the delta shape, specified as a positive scalar in degrees. The value of the angle must be greater than 0 degrees and less than 180 degrees.

Example: shape = delta(Angle=50)

Data Types: double

Object Functions

addBoolean unite operation on two RF PCB shapes
andShape1 & Shape2 for RF PCB shapes
areaCalculate area of RF PCB shape in square meters
intersectBoolean intersection operation on two RF PCB shapes
meshChange and view mesh properties of metal or dielectric in PCB component
minusShape1 - Shape2 for RF PCB shapes
plusShape1 + Shape2 for RF PCB shapes
rotateRotate RF PCB shape about defined axis
rotateXRotate RF PCB shape about x-axis
rotateYRotate RF PCB shape about y-axis and angle
rotateZRotate RF PCB shape about z-axis
subtractBoolean subtraction operation on two RF PCB shapes
scaleChange size of RF PCB shape by fixed amount
showDisplay PCB component structure or PCB shape
translateMove RF PCB shape to new location

Examples

collapse all

Create a delta shape with default properties.

deltashape = delta
deltashape = 
  delta with properties:

              Name: 'mydelta'
    ReferencePoint: [0 0]
       OuterRadius: 0.0016
       InnerRadius: 0
             Angle: 90

View the shape.

show(deltashape)

Version History

Introduced in R2021b

See Also