{ "cells": [ { "cell_type": "markdown", "metadata": {}, "source": [ "# Some Basics" ] }, { "cell_type": "code", "execution_count": 1, "metadata": {}, "outputs": [], "source": [ "import os, sys\n", "sys.path.insert(0, os.path.abspath(\"..\"))\n", "\n", "import geoclide as gc\n", "import numpy as np" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## Create a point and a vector" ] }, { "cell_type": "code", "execution_count": 2, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "(Point(0.0, 0.0, 0.0),\n", " Vector(0.7001400420140049, 0.7001400420140049, 0.140028008402801))" ] }, "execution_count": 2, "metadata": {}, "output_type": "execute_result" } ], "source": [ "p1 = gc.Point(0., 0., 0.) # create a point\n", "v1 = gc.normalize(gc.Vector(0.5, 0.5, 0.1)) # create a vector and normalize it\n", "p1, v1" ] }, { "cell_type": "code", "execution_count": 3, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "1.0" ] }, "execution_count": 3, "metadata": {}, "output_type": "execute_result" } ], "source": [ "v1.length()" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## Create a ray from the created point and vector" ] }, { "cell_type": "code", "execution_count": 4, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "r(t) = (0.0, 0.0, 0.0) + t*(0.7001400420140049, 0.7001400420140049, 0.140028008402801) with t ∈ [0,inf[" ] }, "execution_count": 4, "metadata": {}, "output_type": "execute_result" } ], "source": [ "r1 = gc.Ray(o=p1, d=v1)\n", "r1" ] }, { "cell_type": "code", "execution_count": 5, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "Point(5.601120336112039, 5.601120336112039, 1.120224067222408)" ] }, "execution_count": 5, "metadata": {}, "output_type": "execute_result" } ], "source": [ "r1(8)" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## Create a simple triangle mesh composed of 2 triangles" ] }, { "cell_type": "code", "execution_count": 6, "metadata": {}, "outputs": [ { "data": { "text/html": [ "
<xarray.Dataset> Size: 865B\n", "Dimensions: (xyz: 3, nvertices: 4, ntriangles: 2, p0p1p2: 3, dim_0: 4,\n", " dim_1: 4)\n", "Coordinates:\n", " * xyz (xyz) int64 24B 0 1 2\n", "Dimensions without coordinates: nvertices, ntriangles, p0p1p2, dim_0, dim_1\n", "Data variables: (12/18)\n", " o (xyz) float64 24B 0.0 0.0 0.0\n", " d (xyz) float64 24B 0.7001 0.7001 0.14\n", " mint int64 8B 0\n", " maxt float64 8B inf\n", " is_intersection bool 1B True\n", " thit float64 8B 3.571\n", " ... ...\n", " vertices (nvertices, xyz) float64 96B -5.0 -5.0 0.0 ... 5.0 5.0 0.0\n", " faces (ntriangles, p0p1p2) int64 48B 0 1 2 2 3 1\n", " wTo_m (dim_0, dim_1) float64 128B 6.123e-17 0.0 1.0 ... 0.0 1.0\n", " wTo_mInv (dim_0, dim_1) float64 128B 6.123e-17 0.0 -1.0 ... 0.0 1.0\n", " oTw_m (dim_0, dim_1) float64 128B 6.123e-17 0.0 -1.0 ... 0.0 1.0\n", " oTw_mInv (dim_0, dim_1) float64 128B 6.123e-17 0.0 1.0 ... 0.0 1.0\n", "Attributes:\n", " shape: TriangleMesh\n", " date: 2025-03-10\n", " version: 2.0.2\n", " ntriangles: 2\n", " nvertices: 4
<xarray.DataArray 'phit' (xyz: 3)> Size: 24B\n", "array([2.5, 2.5, 0.5])\n", "Coordinates:\n", " * xyz (xyz) int64 24B 0 1 2\n", "Attributes:\n", " type: Point\n", " description: the x, y and z components of the intersection point