> For the complete documentation index, see [llms.txt](https://docs.openbrim.org/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.openbrim.org/developers/paramml-developer-guide/core-objects/finite-elements-objects/femeshsurface/constraintpoints.md).

# ConstraintPoints

The ConstraintPoints parameter allows you to specify additional nodes or points on the surface.

For example, if you have already defined the surface using the CX and CY parameters, but you want to add a specific point, you can use the ConstraintPoints parameter.

**Example:**

```xml
<O N="FEMeshObject2" T="Project" Category="FEM Objects" TransAlignRule="Right">
    <!-- created by ParamML Examples on 08.02.2023 -->
    <O N="FEM1" T="FEMeshSurface" CX="240" CY="240" ConstraintLines="[[[-1,0],[241,240]]]" Material="@NULL\|Material" Surface="@NULL\|Surface" CoorSys="@NULL\|CoorSys" Group="@NULL\|FEGroup" IsConstraint="1">
        <O T="Surface">
            <O T="Point" X="0" Y="0" />
            <O T="Point" X="240" Y="0" />
            <O T="Point" X="240" Y="240" />
            <O T="Point" X="0" Y="240" />
        </O>
    </O>
    <O N="FEM2" T="FEMeshSurface" CX="120" CY="24" ConstraintLines="[[[310,-1],[530,241]]]" Material="@NULL\|Material" Surface="@NULL\|Surface" CoorSys="@NULL\|CoorSys" Group="@NULL\|FEGroup" IsConstraint="1">
        <O T="Surface" X="300">
            <O T="Point" X="0" Y="0" />
            <O T="Point" X="240" Y="0" />
            <O T="Point" X="240" Y="240" />
            <O T="Point" X="0" Y="240" />
        </O>
    </O>
    <O N="FEM3" T="FEMeshSurface" CX="240" CY="240" ConstraintLines="[[[-1,300],[241,540]]]" Material="@NULL\|Material" Surface="@NULL\|Surface" CoorSys="@NULL\|CoorSys" Group="@NULL\|FEGroup" IsConstraint="1">
        <O T="Surface" Y="300">
            <O T="Point" X="0" Y="0" />
            <O T="Point" X="240" Y="0" />
            <O T="Point" X="240" Y="240" />
            <O T="Point" X="0" Y="240" />
        </O>
    </O>
    <O N="FEM4" T="FEMeshSurface" CX="24" CY="120" ConstraintLines="[[[299,310],[541,530]]]" Material="@NULL\|Material" Surface="@NULL\|Surface" CoorSys="@NULL\|CoorSys" Group="@NULL\|FEGroup" IsConstraint="1">
        <O T="Surface" X="300" Y="300">
            <O T="Point" X="0" Y="0" />
            <O T="Point" X="240" Y="0" />
            <O T="Point" X="240" Y="240" />
            <O T="Point" X="0" Y="240" />
        </O>
    </O>
</O>
```

![](https://openbrim.atlassian.net/wiki/download/attachments/2164686851/image-20230208-093535.png?api=v2) The points marked as FEM 1 are "\[\[-1.0],\[241,240]]".

The points marked as FEM 2 are "\[\[310,-1],\[530,241]]".

The points marked as FEM 3 are "\[\[-1,300],\[241,540]]".

The points marked as FEM 4 are "\[\[299,310],\[541,530]]".

When you define these points or create a new point, the FEMeshSurface creates a mesh on the x-x, y-y, z-z, x-y, x-z, y-z planes within the defined "FEMeshSurface". The mesh then continues in the defined direction across the surfaces. It's important to note that the plane on which you want to create the mesh must be specified. For example, if we have defined a plane in the x-y plane, and you want to create a mesh on the x-x and y-y plane, the points you define must be outside the surface, as seen in the FEM 1 example where the points are "\[\[-1.0],\[241,240]]". The mesh is created between these defined points, with the "x" coordinate defined outside the FEM1 surface, enabling the creation of the FEMeshSurface. To view this example in the library, see (<https://openbrim.org/platform/?application=inc&author=ParamML_Examples_OpenBrIM+Platform&folder=FEM+Objects&obj=objidty92m26eyw2ilcay3gbrh>)

Please proceed to the next page.


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://docs.openbrim.org/developers/paramml-developer-guide/core-objects/finite-elements-objects/femeshsurface/constraintpoints.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
