Skip to content
Snippets Groups Projects
Commit c5a74b95 authored by Andrew Maclean's avatar Andrew Maclean Committed by GitHub
Browse files

Merge pull request #481 from chakravarthi589/Add_AddCell

Add add cell
parents f4be557f 10f70eeb
No related branches found
No related tags found
No related merge requests found
......@@ -158,6 +158,7 @@ It would be appreciated if there are any Java VTK experts who could convert any
| Example Name | Classes Demonstrated | Description | Image |
| -------------- | ---------------------- | ------------- | ------- |
[BoundaryEdges](/Java/Meshes/BoundaryEdges) | vtkFeatureEdges | Find the edges that are used by only one face.
[AddCell](/Java/Meshes/AddCell) | vtkPolyData | Add a cell to an existing mesh.
## Working with 3D Data
......
import vtk.vtkNativeLibrary;
import vtk.vtkPoints;
import vtk.vtkTriangle;
import vtk.vtkCellArray;
import vtk.vtkPolyData;
public class AddCell
{
// -----------------------------------------------------------------
// Load VTK library and print which library was not properly loaded
static
{
if (!vtkNativeLibrary.LoadAllNativeLibraries())
{
for (vtkNativeLibrary lib : vtkNativeLibrary.values())
{
if (!lib.IsLoaded())
{
System.out.println(lib.GetLibraryName() + " not loaded");
}
}
}
vtkNativeLibrary.DisableOutputWindow(null);
}
// -----------------------------------------------------------------
public static void main(String args[])
{
// Create a triangle
vtkPoints points = new vtkPoints();
points.InsertNextPoint ( 1.0, 0.0, 0.0 );
points.InsertNextPoint ( 0.0, 0.0, 0.0 );
points.InsertNextPoint ( 0.0, 1.0, 0.0 );
vtkTriangle triangle = new vtkTriangle();
triangle.GetPointIds().SetId ( 0, 0 );
triangle.GetPointIds().SetId ( 1, 1 );
triangle.GetPointIds().SetId ( 2, 2 );
vtkCellArray triangles = new vtkCellArray();
triangles.InsertNextCell ( triangle );
// Create a polydata object
vtkPolyData polyData = new vtkPolyData();
// Add the geometry and topology to the polydata
polyData.SetPoints ( points );
polyData.SetPolys ( triangles );
System.out.println("There are " + " " + polyData.GetNumberOfCells() + " " + "cells.");
polyData.GetPolys().InsertNextCell(triangle);
System.out.println("There are " + " " + polyData.GetNumberOfCells() + " " + "cells.");
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment